From cd3ad65ff8b2c11ca825cc3c1fc8da4273c65135 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Thu, 28 Sep 2017 15:04:42 -0600 Subject: [PATCH 01/20] Documents usages of temperature --- copycat.log | 85 ++++++++++++++++++ copycat/codeletMethods.py | 14 +++ copycat/coderack.py | 3 + copycat/copycat.py | 16 ++-- copycat/curses_reporter.py | 2 +- copycat/temperature.py | 3 +- copycat/tests.py | 1 + copycat/workspaceFormulas.py | 1 + copycat/workspaceObject.py | 1 - temp_usages.txt | 168 +++++++++++++++++++++++++++++++++++ todos.txt | 53 +++++++++++ 11 files changed, 336 insertions(+), 11 deletions(-) create mode 100644 copycat.log create mode 100644 temp_usages.txt create mode 100644 todos.txt diff --git a/copycat.log b/copycat.log new file mode 100644 index 0000000..fb7881c --- /dev/null +++ b/copycat.log @@ -0,0 +1,85 @@ +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = b from initial string +object chosen = k from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond diff --git a/copycat/codeletMethods.py b/copycat/codeletMethods.py index 6b94bf3..46e2ebf 100644 --- a/copycat/codeletMethods.py +++ b/copycat/codeletMethods.py @@ -72,6 +72,7 @@ def __structureVsStructure(structure1, weight1, structure2, weight2): """Return true if the first structure comes out stronger than the second.""" ctx = structure1.ctx random = ctx.random + # TODO: use entropy temperature = ctx.temperature structure1.updateStrength() structure2.updateStrength() @@ -111,6 +112,7 @@ def __fightIncompatibles(incompatibles, structure, name, def __slippability(ctx, conceptMappings): random = ctx.random + # TODO: use entropy temperature = ctx.temperature for mapping in conceptMappings: slippiness = mapping.slippability() / 100.0 @@ -124,6 +126,7 @@ def __slippability(ctx, conceptMappings): @codelet('breaker') def breaker(ctx, codelet): random = ctx.random + # TODO: use entropy temperature = ctx.temperature workspace = ctx.workspace # TODO: use entropy @@ -161,6 +164,7 @@ def chooseRelevantDescriptionByActivation(ctx, workspaceObject): def similarPropertyLinks(ctx, slip_node): random = ctx.random + # TODO: use entropy temperature = ctx.temperature result = [] for slip_link in slip_node.propertyLinks: @@ -216,6 +220,7 @@ def top_down_description_scout(ctx, codelet): def description_strength_tester(ctx, codelet): coderack = ctx.coderack random = ctx.random + # TODO: use entropy temperature = ctx.temperature description = codelet.arguments[0] description.descriptor.buffer = 100.0 @@ -301,6 +306,7 @@ def rule_scout(ctx, codelet): coderack = ctx.coderack random = ctx.random slipnet = ctx.slipnet + # TODO: use entropy temperature = ctx.temperature workspace = ctx.workspace assert workspace.numberOfUnreplacedObjects() == 0 @@ -339,6 +345,7 @@ def rule_scout(ctx, codelet): # "union of this and distinguishing descriptors" assert objectList # use conceptual depth to choose a description + # TODO: use entropy weights = [ temperature.getAdjustedValue(node.conceptualDepth) for node in objectList @@ -350,6 +357,7 @@ def rule_scout(ctx, codelet): objectList += [changed.replacement.relation] objectList += [changed.replacement.objectFromModified.getDescriptor( slipnet.letterCategory)] + # TODO: use entropy # use conceptual depth to choose a relation weights = [ temperature.getAdjustedValue(node.conceptualDepth) @@ -364,6 +372,7 @@ def rule_scout(ctx, codelet): def rule_strength_tester(ctx, codelet): coderack = ctx.coderack random = ctx.random + # TODO: use entropy temperature = ctx.temperature rule = codelet.arguments[0] rule.updateStrength() @@ -465,6 +474,7 @@ def top_down_bond_scout__direction(ctx, codelet): def bond_strength_tester(ctx, codelet): coderack = ctx.coderack random = ctx.random + # TODO: use entropy temperature = ctx.temperature bond = codelet.arguments[0] __showWhichStringObjectIsFrom(bond) @@ -747,6 +757,7 @@ def group_strength_tester(ctx, codelet): coderack = ctx.coderack random = ctx.random slipnet = ctx.slipnet + # TODO: use entropy temperature = ctx.temperature # update strength value of the group group = codelet.arguments[0] @@ -869,6 +880,7 @@ def __getCutoffWeights(bondDensity): def rule_translator(ctx, codelet): coderack = ctx.coderack random = ctx.random + # TODO: use entropy temperature = ctx.temperature workspace = ctx.workspace assert workspace.rule @@ -946,6 +958,7 @@ def important_object_correspondence_scout(ctx, codelet): assert objectFromInitial is not None descriptors = objectFromInitial.relevantDistinguishingDescriptors() # choose descriptor by conceptual depth + # TODO: use entropy weights = [temperature.getAdjustedValue(n.conceptualDepth) for n in descriptors] slipnode = random.weighted_choice(descriptors, weights) assert slipnode @@ -997,6 +1010,7 @@ def important_object_correspondence_scout(ctx, codelet): def correspondence_strength_tester(ctx, codelet): coderack = ctx.coderack random = ctx.random + # TODO: use entropy temperature = ctx.temperature workspace = ctx.workspace correspondence = codelet.arguments[0] diff --git a/copycat/coderack.py b/copycat/coderack.py index d8bca0b..33fef58 100644 --- a/copycat/coderack.py +++ b/copycat/coderack.py @@ -68,6 +68,7 @@ class Coderack(object): self.postBottomUpCodelets() def probabilityOfPosting(self, codeletName): + # TODO: use entropy temperature = self.ctx.temperature workspace = self.ctx.workspace if codeletName == 'breaker': @@ -156,6 +157,7 @@ class Coderack(object): def __postBottomUpCodelets(self, codeletName): random = self.ctx.random + # TODO: use entropy temperature = self.ctx.temperature probability = self.probabilityOfPosting(codeletName) howMany = self.howManyToPost(codeletName) @@ -288,6 +290,7 @@ class Coderack(object): def chooseCodeletToRun(self): random = self.ctx.random + # TODO: use entropy temperature = self.ctx.temperature assert self.codelets diff --git a/copycat/copycat.py b/copycat/copycat.py index fc400b8..8602fc7 100644 --- a/copycat/copycat.py +++ b/copycat/copycat.py @@ -16,7 +16,7 @@ class Reporter(object): def report_slipnet(self, slipnet): pass - def report_temperature(self, temperature): + def report_temperature(self, temperature): #TODO: use entropy pass def report_workspace(self, workspace): @@ -28,19 +28,19 @@ class Copycat(object): self.coderack = Coderack(self) self.random = Randomness(rng_seed) self.slipnet = Slipnet() - self.temperature = Temperature() + self.temperature = Temperature() # TODO: use entropy self.workspace = Workspace(self) self.reporter = reporter or Reporter() def mainLoop(self, lastUpdate): currentTime = self.coderack.codeletsRun - self.temperature.tryUnclamp(currentTime) + self.temperature.tryUnclamp(currentTime) # TODO: use entropy # Every 15 codelets, we update the workspace. if currentTime >= lastUpdate + 15: self.workspace.updateEverything() self.coderack.updateCodelets() self.slipnet.update(self.random) - self.temperature.update(self.workspace.getUpdatedTemperature()) + self.temperature.update(self.workspace.getUpdatedTemperature()) # TODO: use entropy lastUpdate = currentTime self.reporter.report_slipnet(self.slipnet) self.coderack.chooseAndRunCodelet() @@ -53,14 +53,14 @@ class Copycat(object): """Run a trial of the copycat algorithm""" self.coderack.reset() self.slipnet.reset() - self.temperature.reset() + self.temperature.reset() # TODO: use entropy self.workspace.reset() lastUpdate = float('-inf') while self.workspace.finalAnswer is None: lastUpdate = self.mainLoop(lastUpdate) answer = { 'answer': self.workspace.finalAnswer, - 'temp': self.temperature.last_unclamped_value, + 'temp': self.temperature.last_unclamped_value, # TODO: use entropy 'time': self.coderack.codeletsRun, } self.reporter.report_answer(answer) @@ -73,11 +73,11 @@ class Copycat(object): answer = self.runTrial() d = answers.setdefault(answer['answer'], { 'count': 0, - 'sumtemp': 0, + 'sumtemp': 0, # TODO: use entropy 'sumtime': 0 }) d['count'] += 1 - d['sumtemp'] += answer['temp'] + d['sumtemp'] += answer['temp'] # TODO: use entropy d['sumtime'] += answer['time'] for answer, d in answers.items(): diff --git a/copycat/curses_reporter.py b/copycat/curses_reporter.py index 1bd224a..faa8548 100644 --- a/copycat/curses_reporter.py +++ b/copycat/curses_reporter.py @@ -63,7 +63,7 @@ class CursesReporter(Reporter): coderackHeight = height - upperHeight - answersHeight self.focusOnSlipnet = focus_on_slipnet self.fpsGoal = fps_goal - self.temperatureWindow = SafeSubwindow(window, height, 5, 0, 0) + self.temperatureWindow = SafeSubwindow(window, height, 5, 0, 0) # TODO: use entropy (entropyWindow) self.upperWindow = SafeSubwindow(window, upperHeight, width-5, 0, 5) self.coderackWindow = SafeSubwindow(window, coderackHeight, width-5, upperHeight, 5) self.answersWindow = SafeSubwindow(window, answersHeight, width-5, upperHeight + coderackHeight, 5) diff --git a/copycat/temperature.py b/copycat/temperature.py index a5981e8..1ead82e 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -1,6 +1,5 @@ import math - class Temperature(object): def __init__(self): self.reset() @@ -47,6 +46,8 @@ class Temperature(object): """ def getAdjustedProbability(self, value): + # TODO: use entropy + """ This function returns the probability for a decision. Copied above. diff --git a/copycat/tests.py b/copycat/tests.py index 38b1c49..522206a 100644 --- a/copycat/tests.py +++ b/copycat/tests.py @@ -2,6 +2,7 @@ import unittest from .copycat import Copycat +# TODO: update test cases to use entropy def pnormaldist(p): table = { diff --git a/copycat/workspaceFormulas.py b/copycat/workspaceFormulas.py index 40d991d..8f97cb3 100644 --- a/copycat/workspaceFormulas.py +++ b/copycat/workspaceFormulas.py @@ -1,5 +1,6 @@ def __chooseObjectFromList(ctx, objects, attribute): + # TODO: use entropy random = ctx.random temperature = ctx.temperature weights = [ diff --git a/copycat/workspaceObject.py b/copycat/workspaceObject.py index e641cea..9096861 100644 --- a/copycat/workspaceObject.py +++ b/copycat/workspaceObject.py @@ -2,7 +2,6 @@ from .description import Description from .formulas import weightedAverage from .workspaceStructure import WorkspaceStructure - class WorkspaceObject(WorkspaceStructure): # pylint: disable=too-many-instance-attributes def __init__(self, workspaceString): diff --git a/temp_usages.txt b/temp_usages.txt new file mode 100644 index 0000000..efc6806 --- /dev/null +++ b/temp_usages.txt @@ -0,0 +1,168 @@ +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: weightedStrength1 = temperature.getAdjustedValue( +copycat/codeletMethods.py: weightedStrength2 = temperature.getAdjustedValue( +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: probabilityOfSlippage = temperature.getAdjustedProbability(slippiness) +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: probabilityOfFizzle = (100.0 - temperature.value()) / 100.0 +copycat/codeletMethods.py: breakProbability = temperature.getAdjustedProbability( +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(association) +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(strength / 100.0) +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: temperature.getAdjustedValue(node.conceptualDepth) +copycat/codeletMethods.py: temperature.getAdjustedValue(node.conceptualDepth) +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(rule.totalStrength / 100.0) +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(strength / 100.0) +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(strength / 100.0) +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: if cutoff >= temperature.actual_value: +copycat/codeletMethods.py: temperature.clampUntil(coderack.codeletsRun + 100) +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: weights = [temperature.getAdjustedValue(n.conceptualDepth) for n in descriptors] +copycat/codeletMethods.py: temperature = ctx.temperature +copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(strength / 100.0) +copycat/coderack.py: temperature = self.ctx.temperature +copycat/coderack.py: return (temperature.value() / 100.0) ** 2 +copycat/coderack.py: temperature = self.ctx.temperature +copycat/coderack.py: if temperature.value() < 25.0 and 'translator' in codeletName: +copycat/coderack.py: temperature = self.ctx.temperature +copycat/coderack.py: scale = (100.0 - temperature.value() + 10.0) / 15.0 +copycat/copycat.py:from .temperature import Temperature +copycat/copycat.py: def report_temperature(self, temperature): +copycat/copycat.py: self.temperature = Temperature() +copycat/copycat.py: self.temperature.tryUnclamp(currentTime) +copycat/copycat.py: self.temperature.update(self.workspace.getUpdatedTemperature()) +copycat/copycat.py: self.reporter.report_temperature(self.temperature) +copycat/copycat.py: self.temperature.reset() +copycat/copycat.py: 'temp': self.temperature.last_unclamped_value, +copycat/copycat.py: 'sumtemp': 0, +copycat/copycat.py: d['sumtemp'] += answer['temp'] +copycat/copycat.py: d['avgtemp'] = d.pop('sumtemp') / d['count'] +copycat/curses_reporter.py: self.temperatureWindow = SafeSubwindow(window, height, 5, 0, 0) +copycat/curses_reporter.py: for w in [self.temperatureWindow, self.upperWindow, self.answersWindow, self.fpsWindow]: +copycat/curses_reporter.py: w = self.temperatureWindow # just a random window +copycat/curses_reporter.py: 'sumtemp': 0, +copycat/curses_reporter.py: d['sumtemp'] += answer['temp'] +copycat/curses_reporter.py: d['avgtemp'] = d['sumtemp'] / d['count'] +copycat/curses_reporter.py: return 3 * d['count'] - d['avgtemp'] +copycat/curses_reporter.py: return '%s: %d (avg time %.1f, avg temp %.1f)' % ( +copycat/curses_reporter.py: d['answer'], d['count'], d['avgtime'], d['avgtemp'], +copycat/curses_reporter.py: def report_temperature(self, temperature): +copycat/curses_reporter.py: w = self.temperatureWindow +copycat/curses_reporter.py: mercury = max_mercury * temperature.value() / 100.0 +copycat/curses_reporter.py: w.addnstr(height - 2, 1, '%3d' % temperature.actual_value, 3) +copycat/group.py: temperature = self.ctx.temperature +copycat/group.py: return temperature.getAdjustedProbability(supportedActivation) +copycat/group.py: temperature = self.ctx.temperature +copycat/group.py: value = temperature.getAdjustedProbability(probability) +copycat/temperature.py: iiijjjlll: 670 (avg time 1108.5, avg temp 23.6) +copycat/temperature.py: iiijjjd: 2 (avg time 1156.0, avg temp 35.0) +copycat/temperature.py: iiijjjkkl: 315 (avg time 1194.4, avg temp 35.5) +copycat/temperature.py: iiijjjkll: 8 (avg time 2096.8, avg temp 44.1) +copycat/temperature.py: iiijjjkkd: 5 (avg time 837.2, avg temp 48.0) +copycat/temperature.py: wyz: 5 (avg time 2275.2, avg temp 14.9) +copycat/temperature.py: xyd: 982 (avg time 2794.4, avg temp 17.5) +copycat/temperature.py: yyz: 7 (avg time 2731.9, avg temp 25.1) +copycat/temperature.py: dyz: 2 (avg time 3320.0, avg temp 27.1) +copycat/temperature.py: xyy: 2 (avg time 4084.5, avg temp 31.1) +copycat/temperature.py: xyz: 2 (avg time 1873.5, avg temp 52.1) +copycat/temperature.py: wyz: 7 (avg time 3192.9, avg temp 13.1) +copycat/temperature.py: xyd: 985 (avg time 2849.1, avg temp 17.5) +copycat/temperature.py: yyz: 6 (avg time 3836.7, avg temp 18.6) +copycat/temperature.py: xyy: 1 (avg time 1421.0, avg temp 19.5) +copycat/temperature.py: xyz: 1 (avg time 7350.0, avg temp 48.3) +copycat/temperature.py: wyz: 8 (avg time 4140.5, avg temp 13.3) +copycat/temperature.py: yyz: 6 (avg time 2905.2, avg temp 14.5) +copycat/temperature.py: xyd: 982 (avg time 3025.4, avg temp 17.6) +copycat/temperature.py: dyz: 4 (avg time 4265.0, avg temp 17.7) +copycat/temperature.py: dyz: 1 (avg time 5198.0, avg temp 15.3) +copycat/temperature.py: wyz: 3 (avg time 4043.7, avg temp 17.1) +copycat/temperature.py: yyz: 9 (avg time 3373.6, avg temp 21.0) +copycat/temperature.py: xyd: 84 (avg time 5011.1, avg temp 23.3) +copycat/temperature.py: xyy: 3 (avg time 4752.0, avg temp 27.9) +copycat/temperature.py: xyd: 1000 (avg time 1625.2, avg temp 17.3) +copycat/temperature.py: xyz: 3 (avg time 3996.7, avg temp 81.1) +copycat/temperature.py: dyz: 46 (avg time 5931.7, avg temp 82.6) +copycat/temperature.py: xd: 17 (avg time 6090.3, avg temp 83.8) +copycat/temperature.py: xyd: 934 (avg time 7699.8, avg temp 88.1) +copycat/temperature.py: wyz: 123 (avg time 5933.1, avg temp 16.5) +copycat/temperature.py: xyy: 200 (avg time 6486.7, avg temp 27.8) +copycat/temperature.py: yyz: 330 (avg time 6310.2, avg temp 38.5) +copycat/temperature.py: dyz: 75 (avg time 6393.3, avg temp 39.6) +copycat/temperature.py: yzz: 5 (avg time 4965.0, avg temp 59.3) +copycat/temperature.py: xyz: 160 (avg time 6886.2, avg temp 60.2) +copycat/temperature.py: xd: 4 (avg time 2841.0, avg temp 61.8) +copycat/temperature.py: dz: 3 (avg time 3721.0, avg temp 62.1) +copycat/temperature.py: xyd: 100 (avg time 5853.1, avg temp 67.5) +copycat/temperature.py: wyz: 78 (avg time 7793.7, avg temp 16.6) +copycat/temperature.py: xyy: 202 (avg time 9168.5, avg temp 27.5) +copycat/temperature.py: wxz: 1 (avg time 3154.0, avg temp 33.4) +copycat/temperature.py: dyz: 63 (avg time 7950.3, avg temp 41.7) +copycat/temperature.py: yyz: 217 (avg time 8147.4, avg temp 41.7) +copycat/temperature.py: xyz: 201 (avg time 7579.7, avg temp 62.5) +copycat/temperature.py: xxy: 1 (avg time 7994.0, avg temp 64.8) +copycat/temperature.py: yzz: 8 (avg time 4672.6, avg temp 65.7) +copycat/temperature.py: xd: 9 (avg time 9215.2, avg temp 68.1) +copycat/temperature.py: xyd: 217 (avg time 7677.9, avg temp 73.8) +copycat/temperature.py: dz: 3 (avg time 20379.0, avg temp 77.3) +copycat/temperature.py: xyd: 100 (avg time 2984.3, avg temp 18.2) +copycat/temperature.py: jijjkk: 66 (avg time 3200.1, avg temp 61.3) +copycat/temperature.py: iijjkk: 114 (avg time 5017.2, avg temp 63.5) +copycat/temperature.py: dijjkk: 23 (avg time 2209.0, avg temp 67.3) +copycat/temperature.py: iijjkl: 748 (avg time 3262.8, avg temp 70.0) +copycat/temperature.py: iijjkd: 49 (avg time 2315.9, avg temp 76.3) +copycat/temperature.py: iijjll: 59 (avg time 797.4, avg temp 19.8) +copycat/temperature.py: iijjkl: 41 (avg time 696.1, avg temp 28.5) +copycat/temperature.py: mrrlll: 77 (avg time 2195.7, avg temp 41.4) +copycat/temperature.py: mrrd: 2 (avg time 1698.0, avg temp 42.6) +copycat/temperature.py: mrrkkl: 20 (avg time 1317.8, avg temp 46.6) +copycat/temperature.py: mrrkkd: 1 (avg time 1835.0, avg temp 48.6) +copycat/temperature.py: nrrkkk: 11 (avg time 3637.8, avg temp 64.6) +copycat/temperature.py: drrkkk: 3 (avg time 5921.3, avg temp 66.2) +copycat/temperature.py: mrrkkd: 7 (avg time 6771.3, avg temp 74.6) +copycat/temperature.py: mrrkkl: 79 (avg time 3723.0, avg temp 74.9) +copycat/tests.py:def lower_bound_on_probability(hits, attempts, confidence=0.95): +copycat/tests.py: if attempts == 0: +copycat/tests.py: phat = 1.0 * hits / attempts +copycat/tests.py: under_sqrt = (phat * (1 - phat) + zsqr / (4 * attempts)) / attempts +copycat/tests.py: denominator = (1 + zsqr / attempts) +copycat/tests.py: return (phat + zsqr / (2 * attempts) - z * (under_sqrt ** 0.5)) / denominator +copycat/tests.py:def upper_bound_on_probability(hits, attempts, confidence=0.95): +copycat/tests.py: misses = attempts - hits +copycat/tests.py: return 1.0 - lower_bound_on_probability(misses, attempts, confidence) +copycat/tests.py: if abs(actual[k]['avgtemp'] - expected[k]['avgtemp']) >= 10.0 + (10.0 / actual[k]['count']): +copycat/tests.py: print('Failed (%s - %s >= %s)' % (actual[k]['avgtemp'], expected[k]['avgtemp'], 10.0 + (10.0 / actual[k]['count']))) +copycat/tests.py: 'efd': {'count': 1, 'avgtemp': 16}, +copycat/tests.py: 'efh': {'count': 99, 'avgtemp': 19}, +copycat/tests.py: 'ijd': {'count': 4, 'avgtemp': 24}, +copycat/tests.py: 'ijl': {'count': 96, 'avgtemp': 20}, +copycat/tests.py: 'xyd': {'count': 100, 'avgtemp': 19}, +copycat/tests.py: 'ijkkk': {'count': 7, 'avgtemp': 21}, +copycat/tests.py: 'ijll': {'count': 47, 'avgtemp': 28}, +copycat/tests.py: 'ijkl': {'count': 44, 'avgtemp': 32}, +copycat/tests.py: 'ijkd': {'count': 2, 'avgtemp': 65}, +copycat/tests.py: 'mrrjjjj': {'count': 4, 'avgtemp': 16}, +copycat/tests.py: 'mrrkkk': {'count': 31, 'avgtemp': 47}, +copycat/tests.py: 'mrrjjk': {'count': 64, 'avgtemp': 51}, +copycat/tests.py: 'mrrjkk': {'count': 1, 'avgtemp': 52}, +copycat/tests.py: 'mrrjjd': {'count': 1, 'avgtemp': 54}, +copycat/tests.py: 'milj': {'count': 85, 'avgtemp': 55}, +copycat/tests.py: 'mikj': {'count': 10, 'avgtemp': 56}, +copycat/tests.py: 'milk': {'count': 1, 'avgtemp': 56}, +copycat/tests.py: 'lilk': {'count': 1, 'avgtemp': 57}, +copycat/tests.py: 'milb': {'count': 3, 'avgtemp': 57}, +copycat/tests.py: 'xc': {'count': 9, 'avgtemp': 57}, +copycat/tests.py: 'xyc': {'count': 82, 'avgtemp': 59}, +copycat/tests.py: 'cyx': {'count': 7, 'avgtemp': 68}, +copycat/tests.py: 'xyx': {'count': 2, 'avgtemp': 69}, +copycat/tests.py: 'cakg': {'count': 99, 'avgtemp': 70}, +copycat/tests.py: 'gake': {'count': 1, 'avgtemp': 59}, +copycat/tests.py: 'kitteg': {'count': 96, 'avgtemp': 66}, +copycat/tests.py: 'kitten': {'count': 4, 'avgtemp': 68}, +copycat/workspaceFormulas.py: temperature = ctx.temperature +copycat/workspaceFormulas.py: temperature.getAdjustedValue( diff --git a/todos.txt b/todos.txt new file mode 100644 index 0000000..5775650 --- /dev/null +++ b/todos.txt @@ -0,0 +1,53 @@ +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO:use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/codeletMethods.py: # TODO: use entropy +copycat/coderack.py: # TODO: use entropy +copycat/coderack.py: # TODO: use entropy +copycat/coderack.py: # TODO: use entropy +copycat/coderack.py: # TODO: use entropy +copycat/coderack.py: # TODO: use entropy +copycat/coderack.py: # TODO: use entropy +copycat/copycat.py: def report_temperature(self, temperature): #TODO: use entropy +copycat/copycat.py: self.temperature = Temperature() # TODO: use entropy +copycat/copycat.py: self.temperature.tryUnclamp(currentTime) # TODO: use entropy +copycat/copycat.py: self.temperature.update(self.workspace.getUpdatedTemperature()) # TODO: use entropy +copycat/copycat.py: self.temperature.reset() # TODO: use entropy +copycat/copycat.py: 'temp': self.temperature.last_unclamped_value, # TODO: use entropy +copycat/copycat.py: 'sumtemp': 0, # TODO: use entropy +copycat/copycat.py: d['sumtemp'] += answer['temp'] # TODO: use entropy +copycat/curses_reporter.py: self.temperatureWindow = SafeSubwindow(window, height, 5, 0, 0) # TODO: use entropy (entropyWindow) +copycat/curses_reporter.py: #TODO: use entropy +copycat/group.py: #TODO: use entropy +copycat/group.py: #TODO: use entropy +copycat/temperature.py: # TODO: use entropy +copycat/tests.py:# TODO: update test cases to use entropy +copycat/workspaceFormulas.py: # TODO: use entropy +copycat/workspaceObject.py: from .group import Group # gross, TODO FIXME +copycat/workspace.py: # TODO: Initial part of refactoring in this method +copycat/workspace.py: # TODO: Extract method? +copycat/workspace.py: # TODO: these 3 methods seem to be the same... are they? If so, Extract method. +copycat/workspace.py: # TODO: use entropy From 42a875a4921c25099e1425887bf900d5ce8b27b6 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Fri, 29 Sep 2017 13:12:16 -0600 Subject: [PATCH 02/20] Minor annotations to temperature calculations --- copycat/temperature.py | 18 ++++++++++++++++++ copycat/workspace.py | 7 ++++++- 2 files changed, 24 insertions(+), 1 deletion(-) diff --git a/copycat/temperature.py b/copycat/temperature.py index 1ead82e..eb49cea 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -222,3 +222,21 @@ class Temperature(object): c = (10 - a) / 100 f = (c + 1) * value return (0 + (-f * math.log2(f))) # max(f, 0.0000) + + def getAdjustedProbability(self, value): + # Recall self.value(): + # def value(self): + # return 100.0 if self.clamped else self.actual_value + # + # f in terms of value() and value only + # f = ((10 - sqrt(100 - self.value()))/100 + 1) * value + + if value == 0 or value == 0.5 or self.value() == 0: + return value + if value < 0.5: + return 1.0 - self.getAdjustedProbability(1.0 - value) + coldness = 100.0 - self.value() + a = math.sqrt(coldness) + c = (10 - a) / 100 + f = (c + 1) * value + return max(f, 0.5) diff --git a/copycat/workspace.py b/copycat/workspace.py index f2d5ba0..1c1ace7 100644 --- a/copycat/workspace.py +++ b/copycat/workspace.py @@ -39,7 +39,7 @@ class Workspace(object): self.changedObject = None self.objects = [] self.structures = [] - self.rule = None + self.rule = None # Only one rule? : LSaldyt self.initial = WorkspaceString(self.ctx, self.initialString) self.modified = WorkspaceString(self.ctx, self.modifiedString) self.target = WorkspaceString(self.ctx, self.targetString) @@ -99,6 +99,11 @@ class Workspace(object): # TODO: use entropy def getUpdatedTemperature(self): + ''' + Calculation of global tolerance towards irrelevance + + temp = weightedAverage(totalUnhappiness(.8), ruleWeakness(.2)) + ''' self.calculateIntraStringUnhappiness() self.calculateInterStringUnhappiness() self.calculateTotalUnhappiness() From 1c570735f8908371e356431ecc5480101bb7aecb Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Tue, 26 Sep 2017 21:16:20 -0600 Subject: [PATCH 03/20] Add simple matplotlib bar plots per run As well as a flag to turn plotting on --- copycat.log | 90062 ++++++++++++++++++++++++++++++++++++++++++ copycat/__init__.py | 1 + copycat/plot.py | 18 + main.py | 5 +- 4 files changed, 90085 insertions(+), 1 deletion(-) create mode 100644 copycat/plot.py diff --git a/copycat.log b/copycat.log index fb7881c..22ead00 100644 --- a/copycat.log +++ b/copycat.log @@ -1,3 +1,73086 @@ +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = a from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=94 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = group[1:2] == jk from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = i from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +lost fight with group[0:1] == ij +failed to break groups: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +destination: k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:1] == ij from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +initial : relevance = 0, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 65 for predecessor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=80 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=80 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=80 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=80 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=80 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=80 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 95 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +lost fight with group[0:1] == ij +failed to break Groups: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = j from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 95 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[0:1] == ij +won fight with group[0:1] == ij +broke the Groups +building group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = b from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +no incompatible bonds +won fight with group[0:2] == ijk +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = Correspondence between a and i from other string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = b from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between b and c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = a from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = b from initial string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 69 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 0, unhappiness=84 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=84 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between a and b +broke the bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = a from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = i from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = Correspondence between a and i from other string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = c from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = k from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = k from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = a from initial string +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = predecessor bond between b and c from other string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = j from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = j from target string +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = i from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: b, destination: a +object chosen = group[0:1] == ij from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=100 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == jk from target string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 95 for successor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 95 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = successor bond between j and k from other string +bond strength = 95 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 95 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = k +no firstBond +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = a from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +object chosen = j from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = i from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +object chosen = group[1:2] == bc from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = k from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = i from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = k from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = Correspondence between a and i from other string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = i from target string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = b from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = Correspondence between a and i from other string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = a from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ij from target string +destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +won fight with successor bond between j and k +broke the bonds +won fight with group[0:1] == ij +won fight with group[0:1] == ij +broke the Groups +building group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = Correspondence between c and k from other string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = b from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +object chosen = successor bond between b and c from other string +bond strength = 69 for successor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +bond strength = 69 for successor bond between b and c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 69 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = j from target string +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 78 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 100, unhappiness=94 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=94 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = c from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = Correspondence between b and j from other string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = j from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ab from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == bc from initial string +object chosen = c from initial string +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +won fight with successor bond between b and c +broke the bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = c from initial string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from j to k +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 78 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 78 for predecessor bond between b and c +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 78 for predecessor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = c from initial string +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=18 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ab from initial string +no incompatible bonds +won fight with group[0:2] == abc +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +won fight with successor bond between j and k +broke the bonds +no incompatible Groups +building group +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = b +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = k from target string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = j from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +initial : relevance = 33, unhappiness=89 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +to object: c +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +source: c, destination: group[0:1] == ab +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +source: group[0:1] == ab, destination: c +initial : relevance = 0, unhappiness=82 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=82 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 0, unhappiness=82 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +object chosen = a from initial string +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = c from initial string +destination: group[0:1] == ab +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ab from initial string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +source: group[0:1] == ab, destination: c +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:1] == ab from initial string +destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = group[0:1] == ab from initial string +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ab from initial string +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:1] == ab from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +to object: c +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ab from initial string +destination: c +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between j and k +initial : relevance = 33, unhappiness=82 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = group[0:1] == ij from target string +initial : relevance = 33, unhappiness=82 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +initial : relevance = 33, unhappiness=82 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +object chosen = group[0:1] == ij from target string +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for group +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +destination: group[0:1] == ab +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: group[0:1] == ab +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 33, unhappiness=82 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 95 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ab from initial string +destination: c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +won fight with group[0:1] == ab +won fight with group[0:1] == ab +broke the Groups +building group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between a and b +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +object chosen = b from initial string +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = b from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = a from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = k from target string +object chosen = b from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = b from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +object chosen = group[0:1] == ij from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = a from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 78 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 24.1, number: 2, bin: 2 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 24.1, number: 2, bin: 2 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = j from target string +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 78 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 0, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 78 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = successor bond between j and k from other string +posting bottom up codelets +object chosen = successor bond between j and k from other string +urgency: 24.1, number: 2, bin: 2 +object chosen = predecessor bond between a and b from other string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = Correspondence between c and k from other string +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +urgency: 24.1, number: 2, bin: 2 +object chosen = successor bond between i and j from other string +object chosen = successor bond between i and j from other string +urgency: 24.1, number: 2, bin: 2 +object chosen = successor bond between j and k from other string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +posting bottom up codelets +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +object chosen = successor bond between j and k from other string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +urgency: 24.1, number: 2, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = Correspondence between c and k from other string +object chosen = Correspondence between b and j from other string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = predecessor bond between b and c from other string +object chosen = Correspondence between b and j from other string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 78 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 78 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 78 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 78 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between b and c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +object chosen = group[1:2] == bc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ab from initial string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[1:2] == bc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: group[1:2] == bc +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:1] == ab from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[1:2] == bc +no firstBond +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: group[1:2] == bc +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: group[1:2] == bc +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ab from initial string +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[1:2] == bc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == bc from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[1:2] == bc +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[1:2] == bc +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[1:2] == bc, destination: a +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == bc from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[1:2] == bc +no firstBond +no firstBond2 +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +object chosen = group[0:2] == abc from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between a and b +broke the bonds +won fight with group[1:2] == bc +won fight with group[1:2] == bc +broke the Groups +building group +object chosen = group[0:1] == ab from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +object chosen = group[0:1] == ab from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 69 for predecessor bond between a and b +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = j from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = b from initial string +object chosen = i from target string +object chosen = i from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = a from initial string +object chosen = predecessor bond between b and c from other string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = a from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = c from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +object chosen = b from initial string +object chosen = i from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = j from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = a from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +urgency: 24.1, number: 2, bin: 2 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 0, unhappiness=18 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between b and c +initial : relevance = 50, unhappiness=18 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +won fight with successor bond between b and c +broke the bonds +no incompatible Groups +building group +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between j and k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between i and j +broke the bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: predecessor bond between b and c +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = i from target string +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = a from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = c from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = b from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = i from target string +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = b from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = a from initial string +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = j from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between i and j +object chosen = group[1:2] == jk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = j from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +object chosen = c from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = a from initial string +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = b from initial string +object chosen = b from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +initial : relevance = 50, unhappiness=78 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between b and c +broke the bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = j from target string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +object chosen = group[1:2] == jk from target string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = group[1:2] == jk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = i from target string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +initial : relevance = 0, unhappiness=84 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +top_down_bond_scout__category +initial : relevance = 50, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = i from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:1] == ab from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond successor bond between i and j +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = i from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == jk from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = b from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +firstBond2: predecessor bond between j and k +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = b from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +object chosen = successor bond between i and j from other string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:1] == ab from initial string +object chosen = c from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = i from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = i +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = b from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = b from initial string +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +won fight with predecessor bond between i and j +broke the bonds +no incompatible Groups +building group +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +won fight with successor bond between j and k +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = j from target string +object chosen = i from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = b from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between j and k from other string +bond strength = 69 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between b and c +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between b and c +no firstBond2 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = c from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between j and k from other string +bond strength = 69 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[1:2] == bc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 69 for predecessor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +won fight with successor bond between j and k +broke the bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between a and b +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +initial : relevance = 0, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = b from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +object chosen = a from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = a from initial string +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = j +no firstBond +no firstBond2 +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: j, destination: i +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = k from target string +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +initial : relevance = 0, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +initial : relevance = 0, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = k from target string +object chosen = k from target string +object chosen = k from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = k from target string +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = c from initial string +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = i from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 78 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = a from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=84 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between b and c +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond successor bond between i and j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = a from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:1] == ij from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[1:2] == jk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = Correspondence between a and i from other string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +posting bottom up codelets +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +object chosen = group[1:2] == jk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = i from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = i from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +object chosen = group[1:2] == bc from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between a and b from other string +bond strength = 78 for successor bond between a and b +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=84 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=84 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[1:2] == bc from initial string +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = a from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 33, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 33, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 1 bonds for bond +to object: k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 33, unhappiness=80 +target : relevance = 33, unhappiness=82 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 33, unhappiness=80 +target : relevance = 33, unhappiness=82 +target string selected: ijk with 3 letters, 4 objects, 1 bonds for group +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=82 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=82 +target string selected: ijk with 3 letters, 4 objects, 1 bonds for bond +source: k, destination: group[0:1] == ij +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[0:1] == ij +lost fight with group[0:1] == ij +failed to break Groups: Fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=82 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=82 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +object chosen = successor bond between i and j from other string +bond strength = 95 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=82 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=82 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 66, unhappiness=82 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=82 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:1] == ab +won fight with group[0:1] == ab +broke the Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between j and k from other string +bond strength = 95 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[1:2] == bc from initial string +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: group[0:1] == ij +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: group[0:1] == ij +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = k from target string +destination: group[0:1] == ij +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[0:1] == ij +won fight with group[0:1] == ij +broke the Groups +building group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = b from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +object chosen = b from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = Correspondence between b and j from other string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = a from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = k from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 69 for successor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = j +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = group[0:1] == ij from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = b from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: successor bond between i and j +no firstBond2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +object chosen = i from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = j from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +posting bottom up codelets +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 2, bin: 7 +object chosen = j from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 78 for predecessor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = j from target string +object chosen = successor bond between i and j from other string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +object chosen = Correspondence between c and k from other string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = b from initial string +object chosen = group[0:1] == ab from initial string +object chosen = a from initial string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = a from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +urgency: 100.0, number: 2, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = b from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = i +no firstBond +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = j from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between b and c +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = k from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = c from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = a from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = j from target string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +object chosen = j from target string +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 78 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: c, destination: b +object chosen = i from target string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = b from initial string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = k from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = c from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = c from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +top_down_bond_scout__category +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = a from initial string +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = c from initial string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: b, destination: a +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = i from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = c from initial string +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = b from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = i from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = b from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = j +no firstBond +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = k from target string +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between j and k +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between a and b +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = group[1:2] == jk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between b and c +broke the bonds +no incompatible Groups +building group +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +won fight with successor bond between b and c +won fight with successor bond between a and b +broke the bonds +won fight with group[0:2] == abc +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[1:2] == jk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == jk from target string +no incompatible bonds +won fight with group[0:2] == ijk +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = j from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = b from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: j, destination: i +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=94 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=94 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: j, destination: k +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = i from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = i from target string +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = a from initial string +object chosen = i from target string +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = k from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = j from target string +object chosen = k from target string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = a from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = c from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = c from initial string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = b from initial string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +object chosen = predecessor bond between a and b from other string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = k +no firstBond +no firstBond2 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +object chosen = a from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 78 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = i from target string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[1:2] == jk from target string +object chosen = a from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +firstBond2: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from j to k +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == jk from target string +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ij from target string +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +object chosen = group[1:2] == jk from target string +no incompatible bonds +no incompatible Groups +building group +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = j from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = Correspondence between b and j from other string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = j from target string +object chosen = i from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = successor bond between b and c from other string +bond strength = 69 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = a from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between b and c +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between i and j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +initial : relevance = 50, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +initial : relevance = 50, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:1] == ij from target string +initial : relevance = 50, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:1] == ab from initial string +object chosen = j from target string +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between i and j +object chosen = k from target string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[1:2] == jk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:1] == ij from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between j and k +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: predecessor bond between i and j +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = b from initial string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = b +no firstBond +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = a from initial string +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: a +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between i and j +object chosen = b from initial string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = b +no firstBond +no firstBond2 +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = i from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: c +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +object chosen = i from target string +object chosen = i from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = b +no firstBond +no firstBond2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = b from initial string +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = b from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = j from target string +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = j +no firstBond +no firstBond2 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = k from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = i +no firstBond +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: k, destination: j +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = k +no firstBond +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: j, destination: k +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = j +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: j +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: i +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == abc from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for group +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: j +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[1:2] == bc from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[1:2] == bc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == jk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:1] == ij from target string +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +firstBond2: predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = b from initial string +object chosen = group[1:2] == bc from initial string +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = b from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = j from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = b from initial string +object chosen = group[1:2] == bc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = i from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +object chosen = group[1:2] == jk from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between b and c +broke the bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[1:2] == jk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between i and j +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +initial : relevance = 50, unhappiness=18 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between b and c +broke the bonds +no incompatible Groups +building group +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = a from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +urgency: 24.1, number: 2, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = Correspondence between b and j from other string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = k from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = k from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = b from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = j from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ij from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: c +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = c from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = c from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 33, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=89 +target : relevance = 33, unhappiness=82 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 100, unhappiness=89 +target : relevance = 33, unhappiness=82 +target string selected: ijk with 3 letters, 4 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = k from target string +object chosen = group[0:1] == ij from target string +destination: k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = i from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=84 +target : relevance = 33, unhappiness=96 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=82 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 33, unhappiness=82 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = successor bond between i and j from other string +bond strength = 95 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[0:1] == ij +lost fight with group[0:1] == ij +failed to break Groups: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[0:1] == ij +won fight with group[0:1] == ij +broke the Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +object chosen = Correspondence between a and i from other string +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = c from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = b from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = j from target string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +object chosen = predecessor bond between a and b from other string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = b from initial string +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[1:2] == jk from target string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = k from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = k from target string +object chosen = k from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = i from target string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: c +object chosen = j from target string +object chosen = k from target string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: b, destination: a +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = j from target string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = i from target string +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: i +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: i +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +object chosen = c from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = b from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = a +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = Correspondence between c and k from other string +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = j from target string +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = b from initial string +object chosen = group[1:2] == bc from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = j from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between b and c +broke the bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = i from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == jk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between i and j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 69 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[1:2] == jk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=94 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=94 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=94 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=94 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=94 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +won fight with group[1:2] == jk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +firstBond2: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from j to k +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[1:2] == jk, destination: i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[1:2] == jk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from j to k +object chosen = i from target string +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +destination: i +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[1:2] == jk +no firstBond +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +won fight with successor bond between j and k +broke the bonds +won fight with group[1:2] == jk +won fight with group[1:2] == jk +broke the Groups +building group +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 24.1, number: 2, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:1] == ij from target string +no incompatible bonds +won fight with group[0:2] == ijk +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 50, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = i from target string +object chosen = group[0:1] == ab from initial string +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +object chosen = b from initial string +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ab, destination: c +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 95 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 95 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ab from initial string +destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +lost fight with group[0:1] == ab +failed to break Groups: Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 95 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +lost fight with group[0:1] == ab +failed to break Groups: Fizzle +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +won fight with group[0:1] == ab +won fight with group[0:1] == ab +broke the Groups +building group +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = i from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: b +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = c from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 69 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = i from target string +object chosen = j from target string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between a and b from other string +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = k from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = i from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = a from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = j from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=89 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = b from initial string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = b from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ab from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +object chosen = b from initial string +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = b from initial string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: predecessor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = group[0:1] == ab from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:1] == ab +broke the groups +building bond predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +initial : relevance = 0, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +object chosen = i from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = b from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = b from initial string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = Correspondence between a and i from other string +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: c, destination: b +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: c +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: b, destination: a +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 50, unhappiness=100 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = c from initial string +initial : relevance = 50, unhappiness=100 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +initial : relevance = 50, unhappiness=100 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=100 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=94 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = c from initial string +object chosen = c from initial string +object chosen = c from initial string +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 0, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 66, unhappiness=89 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 95 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 95 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ab, destination: c +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: group[0:1] == ab +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +initial : relevance = 66, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: group[0:1] == ab +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=92 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=92 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +object chosen = group[0:1] == ab from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 33, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:1] == ab +won fight with group[0:1] == ab +broke the Groups +building group +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = k from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = k from target string +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = a from initial string +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between a and b from other string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: b, destination: c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = b from initial string +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = k from target string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between a and b +failed to break bonds: Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = c from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond successor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = k from target string +object chosen = c from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ab from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +object chosen = i from target string +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = c from initial string +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == bc from initial string +object chosen = c from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == bc from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = i from target string +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = k from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = b from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:1] == ab from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = i from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for group +object chosen = group[0:1] == ij from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: j, destination: k +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=100 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond successor bond between i and j +object chosen = a from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = k from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 24.1, number: 2, bin: 2 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between a and b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +initial : relevance = 50, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:1] == ab from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[1:2] == bc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 69 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = a from initial string +object chosen = successor bond between a and b from other string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +object chosen = group[0:1] == ij from target string +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = group[0:1] == ab from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = group[0:2] == ijk from target string +won fight with successor bond between j and k +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = group[0:1] == ij from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:1] == ij from target string +no incompatible bonds +won fight with group[0:2] == ijk +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:1] == ab from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between b and c +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = b from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = i from target string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = b from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = b from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +object chosen = j from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = group[0:1] == ij from target string +object chosen = c from initial string +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: j, destination: i +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = b from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between i and j from other string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = k from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 50, unhappiness=100 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 69 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = i from target string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +initial : relevance = 50, unhappiness=78 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = b from initial string +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:1] == ij from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[1:2] == jk from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = b from initial string +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = c from initial string +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ij from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 78 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=18 +target : relevance = 33, unhappiness=80 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=18 +target : relevance = 33, unhappiness=80 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=18 +target : relevance = 33, unhappiness=80 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=18 +target : relevance = 33, unhappiness=80 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:1] == ij +failed to break Groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +destination: k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:1] == ij +broke the groups +building bond predecessor bond between i and j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = i from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == jk from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = group[1:2] == jk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=18 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = i from target string +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = j from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = i from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = j from target string +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = k from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +object chosen = a from initial string +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:1] == ij from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[1:2] == jk, destination: i +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[1:2] == jk +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[1:2] == jk from target string +destination: i +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +won fight with group[1:2] == jk +broke the groups +building bond successor bond between j and k +object chosen = k from target string +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 78 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 78 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = Correspondence between b and j from other string +posting bottom up codelets +object chosen = k from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = Correspondence between a and i from other string +posting bottom up codelets +object chosen = successor bond between a and b from other string +object chosen = successor bond between a and b from other string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 78 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = i from target string +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = j from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = b from initial string +object chosen = k from target string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between b and c +no firstBond2 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between b and c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between i and j +broke the bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between b and c +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +initial : relevance = 50, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = group[0:1] == ab from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 66, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 95 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between b and c +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +won fight with group[0:1] == ab +won fight with group[0:1] == ab +broke the Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = k from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 78 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 0, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 69 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = i from target string +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = b from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = k from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = group[1:2] == jk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +bond strength = 95 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[1:2] == jk, destination: i +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[1:2] == jk +won fight with group[1:2] == jk +broke the Groups +building group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between j and k +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == jk from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +firstBond2: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from j to k +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +object chosen = group[0:1] == ij from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == jk from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:1] == ij from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: k +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +urgency: 100.0, number: 1, bin: 7 +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:1] == ij from target string +destination: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: group[0:1] == ij +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +won fight with group[0:1] == ij +won fight with group[0:1] == ij +broke the Groups +building group +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=80 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=80 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=18 +target : relevance = 100, unhappiness=80 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 78 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +urgency: 24.1, number: 2, bin: 2 +urgency: 24.1, number: 2, bin: 2 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between b and c from other string +bond strength = 78 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=18 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=18 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +won fight with successor bond between j and k +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = Correspondence between a and i from other string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = group[0:1] == ab from initial string +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=94 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = group[0:1] == ab from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = group[0:1] == ij from target string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:1] == ij from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +firstBond2: predecessor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = k from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between b and c from other string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = j from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 78 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=84 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = i from target string +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = j from target string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: i +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for group +object chosen = i from target string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = group[0:1] == ij from target string +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 1 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=82 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=82 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = i from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=82 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 95 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:1] == ij from target string +destination: k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 95 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[0:1] == ij +won fight with group[0:1] == ij +broke the Groups +building group +object chosen = i from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:1] == ij from target string +no incompatible bonds +won fight with group[0:2] == ijk +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = i from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = i from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = a from initial string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = a from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +object chosen = group[0:1] == ab from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = b from initial string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = k from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +object chosen = predecessor bond between a and b from other string +bond strength = 69 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = i from target string +object chosen = group[1:2] == jk from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 24.1, number: 2, bin: 2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 24.1, number: 2, bin: 2 +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between j and k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = b from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = j from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 object chosen = k from target string destination: j chosen bond facet: letterCategory @@ -21,7 +73104,13549 @@ destination descriptor: J proposing successor bond object chosen = predecessor bond between j and k from other string bond strength = 48 for predecessor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = k from target string +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: j, destination: i +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = j from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +firstBond2: predecessor bond between j and k +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = j from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +initial : relevance = 100, unhappiness=18 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=18 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=18 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = i from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = i from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: i, destination: j +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = c from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = b from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ij from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = group[0:1] == ij from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = b from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = k from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = j from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = i from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = j from target string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ab from initial string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = b from initial string +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +won fight with group[0:1] == ab +won fight with group[0:1] == ab +broke the Groups +building group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = i from target string +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = k from target string +object chosen = j from target string +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +initial : relevance = 0, unhappiness=94 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: successor bond between b and c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +initial : relevance = 50, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == jk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = group[0:1] == ij from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = b from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between b and c +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = predecessor bond between b and c from other string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 50, unhappiness=79 +target : relevance = 33, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 50, unhappiness=79 +target : relevance = 33, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=79 +target : relevance = 33, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ab from initial string +object chosen = group[1:2] == bc from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 33, unhappiness=79 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 33, unhappiness=79 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=79 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +initial : relevance = 33, unhappiness=79 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 33, unhappiness=79 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +urgency: 100.0, number: 3, bin: 7 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: group[0:1] == ab +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ij, destination: k +object chosen = group[1:2] == bc from initial string +object chosen = group[0:1] == ij from target string +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == bc from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: group[0:1] == ij +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = group[1:2] == bc from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ab from initial string +destination: c +object chosen = group[0:1] == ij from target string +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ij +no firstBond +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ab, destination: c +object chosen = predecessor bond between a and b from other string +bond strength = 65 for predecessor bond between a and b +object chosen = group[1:2] == bc from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 33, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +won fight with group[0:1] == ij +won fight with group[0:1] == ij +broke the Groups +building group +object chosen = group[0:1] == ab from initial string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ab, destination: c +object chosen = group[0:1] == ij from target string +object chosen = i from target string +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ab, destination: c +object chosen = predecessor bond between i and j from other string +bond strength = 78 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: group[0:1] == ab +object chosen = successor bond between b and c from other string +bond strength = 65 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +lost fight with group[0:1] == ab +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: group[0:1] == ab +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ab, destination: c +object chosen = group[1:2] == bc from initial string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: group[0:1] == ab +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = a from initial string +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = c from initial string +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +destination: group[0:1] == ab +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ab from initial string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 33, unhappiness=80 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:1] == ab from initial string +destination: c +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=80 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: group[0:1] == ab +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ab, destination: c +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:1] == ab +broke the groups +building bond predecessor bond between a and b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = a from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +firstBond2: predecessor bond between j and k +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: predecessor bond between b and c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[0:2] == ijk from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = k from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +urgency: 24.1, number: 2, bin: 2 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: successor bond between i and j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=18 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=18 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +object chosen = k from target string +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = b from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = Correspondence between a and i from other string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = c from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = b from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: c +object chosen = c from initial string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +posting bottom up codelets +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = Correspondence between c and k from other string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = c from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = k from target string +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to j +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ij from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction +source chosen = c +no firstBond +no firstBond2 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = a from initial string +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +object chosen = b from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = a +no firstBond +no firstBond2 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = a from initial string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = group[1:2] == jk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[1:2] == bc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +initial : relevance = 50, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = i from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between i and j from other string +bond strength = 78 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +urgency: 100.0, number: 2, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = b from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = c from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = a from initial string +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +source: a, destination: b +object chosen = successor bond between i and j from other string +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=100 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between a and b +object chosen = group[0:2] == abc from initial string +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +no firstBond +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = b from initial string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = i from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 69 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +firstBond2: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +object chosen = a from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between c and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = a from initial string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: predecessor bond between i and j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = successor bond between a and b from other string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +object chosen = i from target string +object chosen = i from target string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +object chosen = group[1:2] == bc from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +firstBond2: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from j to predecessor +proposing group from i to j +object chosen = group[1:2] == bc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = k from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond predecessor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=78 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = j from target string +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = c from initial string +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between a and b +broke the bonds +no incompatible Groups +building group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 6 +posting bottom up codelets +object chosen = j from target string +object chosen = c from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == bc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[0:1] == ij +won fight with group[0:1] == ij +broke the Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond successor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = a from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between i and j from other string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: a +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = i from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 69 for predecessor bond between i and j +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = group[1:2] == jk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 0, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +building bond successor bond between j and k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between a and b +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +won fight with successor bond between j and k +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from j to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = a from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +no firstBond2 +object chosen = group[1:2] == jk from target string +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:1] == ij from target string +object chosen = b from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between i and j +broke the bonds +no incompatible Groups +building group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 69 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between b and c +initial : relevance = 0, unhappiness=84 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=84 +target : relevance = 100, unhappiness=18 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: predecessor bond between b and c +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = k from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between a and b +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +urgency: 24.1, number: 2, bin: 2 +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between i and j +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 94 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +building bond successor bond between i and j +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +won fight with successor bond between i and j +broke the bonds +no incompatible Groups +building group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 69 for predecessor bond between a and b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between i and j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = b from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = predecessor bond between j and k from other string +bond strength = 78 for predecessor bond between j and k +object chosen = k from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=94 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: a +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: c, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +initial : relevance = 50, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:1] == ab from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = c from initial string +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 33, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:1] == ab +failed to break groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:1] == ab +failed to break Groups: Fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:1] == ab +broke the groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +no incompatible bonds +won fight with group[0:1] == ab +won fight with group[0:1] == ab +broke the Groups +building group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: predecessor bond between b and c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond successor bond between i and j +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = i from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +initial : relevance = 50, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ij from target string +object chosen = group[1:2] == bc from initial string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for group +object chosen = i from target string +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = group[1:2] == jk from target string +initial : relevance = 0, unhappiness=79 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from a to c +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between i and j +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between b and c +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +won fight with predecessor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 50, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ij from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[1:2] == jk from target string +no incompatible bonds +no incompatible Groups +building group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 66, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +lost fight with group[1:2] == jk +failed to break Groups: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 95 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 66, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +won fight with group[1:2] == jk +won fight with group[1:2] == jk +broke the Groups +building group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = group[1:2] == bc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ab from initial string +object chosen = a from initial string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = a from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:1] == ab from initial string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +object chosen = group[0:1] == ab from initial string +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == bc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = group[0:1] == ab from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:1] == ab from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == ijk from target string +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 33, unhappiness=92 +target : relevance = 0, unhappiness=18 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +object chosen = b from initial string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 33, unhappiness=92 +target : relevance = 100, unhappiness=18 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = a from initial string +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 33, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 33, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = group[0:1] == ab +no firstBond +no firstBond2 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +building bond predecessor bond between b and c +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +destination: group[0:1] == ab +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: group[0:1] == ab, destination: c +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: c +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 66, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = group[0:2] == abc from initial string +no incompatible bonds +won fight with group[0:1] == ab +won fight with group[0:1] == ab +broke the Groups +building group +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:1] == ab from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = j from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = c from initial string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +posting bottom up codelets +object chosen = c from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: a +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:1] == ab from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = b from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +object chosen = b from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = k from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +source: k, destination: j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between j and k from other string +bond strength = 91 for successor bond between j and k +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 94 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +object chosen = a from initial string +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 object chosen = c from initial string destination: b chosen bond facet: letterCategory @@ -39,11 +86664,1439 @@ number of incompatibleBonds: 0 no incompatible bonds no incompatible groups building bond predecessor bond between b and c +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +object chosen = a from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = c from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: a, destination: b +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between a and b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = k from target string +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to b +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: k +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +object chosen = j from target string +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = successor bond between j and k from other string +bond strength = 69 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 50, unhappiness=84 +target : relevance = 50, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to b +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=94 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 94 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = c from initial string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +won fight with successor bond between b and c +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between b and c +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: a +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=79 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 0, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +object chosen = c from initial string +initial : relevance = 0, unhappiness=78 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = k +no firstBond +no firstBond2 +initial : relevance = 0, unhappiness=78 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +building bond successor bond between a and b +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = i from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ab from initial string +object chosen = group[0:1] == ij from target string +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder object chosen = predecessor bond between j and k from other string number of incompatibleBonds: 0 no incompatible bonds no incompatible groups building bond predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +won fight with predecessor bond between j and k +broke the bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond successor bond between j and k +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to k +object chosen = group[1:2] == bc from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +won fight with group[0:2] == ijk +broke the groups +building bond predecessor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=78 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from j to predecessor +proposing group from j to k +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = group[1:2] == jk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from j to k +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: i +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == abc from initial string +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = group[0:1] == ab from initial string +object chosen = group[1:2] == bc from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == jk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ij from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between a and b from other string +bond strength = 94 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:1] == ab from initial string +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +lost fight with successor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +won fight with successor bond between a and b +broke the bonds +no incompatible Groups +building group +object chosen = group[1:2] == bc from initial string +object chosen = group[1:2] == bc from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=79 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:1] == ab from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: predecessor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: i, destination: j +urgency: 100.0, number: 1, bin: 7 +object chosen = group[1:2] == bc from initial string +object chosen = i from target string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = j from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +won fight with predecessor bond between a and b +broke the bonds +lost fight with group[0:2] == abc +failed to break groups: Fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:1] == ab from initial string +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=79 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +building bond predecessor bond between i and j +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +object chosen = group[1:2] == bc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for group +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = j from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: k +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:1] == ij from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between a and b from other string +bond strength = 96 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = predecessor bond between j and k from other string +bond strength = 96 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 1 +predecessor bond between j and k +lost fight with predecessor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == jk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +posting bottom up codelets +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 1 +predecessor bond between a and b +lost fight with predecessor bond between a and b +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +possible group: predecessor bond between j and k +trying from k to predecessor +proposing group from i to k +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: predecessor bond between i and j +possible group: predecessor bond between i and j +trying from i to predecessor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +firstBond2: predecessor bond between b and c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 96 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = predecessor bond between b and c from other string +bond strength = 96 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: predecessor bond between j and k +no firstBond2 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 2, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 1 +predecessor bond between i and j +lost fight with predecessor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +no firstBond2 +object chosen = c from initial string +posting bottom up codelets +urgency: 100.0, number: 2, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from a to predecessor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between a and b +possible group: predecessor bond between a and b +trying from b to predecessor +proposing group from a to c +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[1:2] == jk from target string +no incompatible bonds +lost fight with group[0:2] == ijk +failed to break Groups: Fizzle +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 23.200000000000003, number: 1, bin: 2 +urgency: 100.0, number: 1, bin: 7 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = b from initial string +object chosen = successor bond between a and b from other string +bond strength = 48 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = i from target string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = i from target string object chosen = b from initial string destination: c chosen bond facet: letterCategory @@ -51,6 +88104,515 @@ Source: b, destination: c source descriptor: B destination descriptor: C proposing successor bond +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = a from initial string +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between a and b from other string +bond strength = 78 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: b, destination: c +object chosen = i from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +initial : relevance = 100, unhappiness=84 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond +to object: j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=78 +target : relevance = 0, unhappiness=100 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=94 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +to object: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between i and j from other string +bond strength = 94 for predecessor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +object chosen = k from target string +object chosen = i from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 50, unhappiness=79 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: j, destination: i +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +to object: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between i and j +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between i and j +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=89 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to k +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between i and j +firstBond2: successor bond between j and k +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +object chosen = group[0:2] == abc from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +no firstBond2 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: i +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond object chosen = k from target string destination: j chosen bond facet: letterCategory @@ -58,6 +88620,42 @@ Source: k, destination: j source descriptor: K destination descriptor: J proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +urgency: 100.0, number: 1, bin: 7 +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 23.200000000000003, number: 1, bin: 2 object chosen = b from initial string destination: a chosen bond facet: letterCategory @@ -65,8 +88663,918 @@ Source: b, destination: a source descriptor: B destination descriptor: A proposing predecessor bond +object chosen = c from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder Post top down: top-down-description-scout, with urgency: 5 posting bottom up codelets +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +object chosen = k from target string +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between i and j from other string +bond strength = 69 for successor bond between i and j +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = successor bond between j and k from other string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = c from initial string +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +object chosen = a from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between a and b from other string +bond strength = 48 for predecessor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +won fight with successor bond between j and k +broke the bonds +no incompatible groups +building bond predecessor bond between j and k +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=78 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction +source chosen = i +firstBond: successor bond between i and j +possible group: successor bond between i and j +trying from i to successor +proposing group from i to j +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +object chosen = j from target string +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond +source: k, destination: j +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +initial : relevance = 0, unhappiness=100 +target : relevance = 50, unhappiness=84 +initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond +to object: b +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +won fight with predecessor bond between j and k +broke the bonds +no incompatible Groups +building group +object chosen = a from initial string +object chosen = successor bond between a and b from other string +bond strength = 91 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = c from initial string +initial : relevance = 0, unhappiness=100 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = j from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:1] == ij from target string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +initial : relevance = 50, unhappiness=100 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +trying to break incompatible correspondences +won fight with Correspondence between c and k +building bond predecessor bond between b and c +object chosen = c from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=89 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from b to predecessor +proposing group from b to c +initial : relevance = 50, unhappiness=89 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: i +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == abc from initial string +lost fight with predecessor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +to object: c +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to b +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:1] == ab from initial string +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +possible group: predecessor bond between b and c +trying from c to predecessor +proposing group from b to c +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: predecessor bond between b and c +no firstBond2 +object chosen = group[1:2] == bc from initial string +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 50, unhappiness=84 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=84 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = b +firstBond: predecessor bond between b and c +firstBond2: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to b +object chosen = successor bond between b and c from other string +bond strength = 94 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 1 +predecessor bond between b and c +won fight with predecessor bond between b and c +broke the bonds +no incompatible groups +building bond successor bond between b and c +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:1] == ab from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +won fight with successor bond between i and j +broke the bonds +lost fight with group[0:2] == ijk +failed to break groups: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: a, destination: b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = i from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +no incompatible groups +trying to break incompatible correspondences +lost fight with Correspondence between a and i +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between a and b from other string +bond strength = 91 for predecessor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +initial : relevance = 0, unhappiness=78 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = predecessor bond between a and b from other string +number of incompatibleBonds: 1 +successor bond between a and b +won fight with successor bond between a and b +broke the bonds +won fight with group[0:2] == abc +broke the groups +trying to break incompatible correspondences +won fight with Correspondence between a and i +building bond predecessor bond between a and b +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +top_down_bond_scout__category +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond +source: c, destination: b +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = j +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from j to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from b to c +initial : relevance = 50, unhappiness=79 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 3 objects, 2 bonds for group +object chosen = group[1:2] == bc from initial string +object chosen = group[0:2] == ijk from target string +initial : relevance = 50, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == abc from initial string +won fight with predecessor bond between a and b +broke the bonds +no incompatible Groups +building group +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=79 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +no firstBond2 +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +object chosen = b from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +object chosen = predecessor bond between b and c from other string +bond strength = 91 for predecessor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--direction, with urgency: 3 +posting bottom up codelets +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = predecessor bond between b and c from other string +number of incompatibleBonds: 1 +successor bond between b and c +lost fight with successor bond between b and c +failed to break bonds: Fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = b from initial string +object chosen = group[1:2] == bc from initial string +object chosen = c from initial string +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +firstBond2: successor bond between a and b +urgency: 100.0, number: 2, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +posting bottom up codelets +object chosen = a from initial string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = predecessor bond between j and k from other string +bond strength = 91 for predecessor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = predecessor bond between i and j from other string +bond strength = 91 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = j from target string +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +object chosen = c from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +posting bottom up codelets +initial : relevance = 0, unhappiness=15 +target : relevance = 0, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = b from initial string +destination: a +chosen bond facet: letterCategory +Source: b, destination: a +source descriptor: B +destination descriptor: A +proposing predecessor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +to object: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:1] == ab from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +object chosen = c from initial string +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond object chosen = j from target string destination: k chosen bond facet: letterCategory @@ -75,7 +89583,21 @@ source descriptor: J destination descriptor: K proposing successor bond object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond object chosen = c from initial string destination: b chosen bond facet: letterCategory @@ -83,3 +89605,543 @@ Source: c, destination: b source descriptor: C destination descriptor: B proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = j from target string +urgency: 23.200000000000003, number: 1, bin: 2 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = a from initial string +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +object chosen = c from initial string +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +object chosen = j from target string +destination: i +chosen bond facet: letterCategory +Source: j, destination: i +source descriptor: J +destination descriptor: I +proposing predecessor bond +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between j and k from other string +bond strength = 48 for successor bond between j and k +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +urgency: 23.200000000000003, number: 1, bin: 2 +object chosen = b from initial string +destination: c +chosen bond facet: letterCategory +Source: b, destination: c +source descriptor: B +destination descriptor: C +proposing successor bond +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +bond strength = 48 for successor bond between b and c +object chosen = k from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +object chosen = c from initial string +destination: b +chosen bond facet: letterCategory +Source: c, destination: b +source descriptor: C +destination descriptor: B +proposing predecessor bond +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = j from target string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = k from target string +object chosen = predecessor bond between i and j from other string +bond strength = 48 for predecessor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 48 for successor bond between i and j +succeeded: posting bond-builder +urgency: 100.0, number: 1, bin: 7 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = b from initial string +object chosen = predecessor bond between b and c from other string +bond strength = 48 for predecessor bond between b and c +object chosen = i from target string +destination: j +chosen bond facet: letterCategory +Source: i, destination: j +source descriptor: I +destination descriptor: J +proposing successor bond +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between i and j +object chosen = successor bond between b and c from other string +bond strength = 91 for successor bond between b and c +succeeded: posting bond-builder +object chosen = a from initial string +object chosen = i from target string +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between b and c from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between b and c +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +object chosen = i from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +urgency: 100.0, number: 1, bin: 7 +urgency: 100.0, number: 1, bin: 7 +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction +source chosen = b +no firstBond +firstBond2: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from b to c +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction +source chosen = j +no firstBond +firstBond2: successor bond between i and j +possible group: successor bond between i and j +trying from j to successor +proposing group from i to j +object chosen = group[0:1] == ij from target string +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +to object: b +urgency: 100.0, number: 1, bin: 7 +object chosen = successor bond between a and b from other string +bond strength = 94 for successor bond between a and b +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 50, unhappiness=89 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond +source: b, destination: c +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[1:2] == bc from initial string +object chosen = successor bond between a and b from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between a and b +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: i, destination: j +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +bond strength = 91 for successor bond between i and j +succeeded: posting bond-builder +object chosen = k from target string +destination: j +chosen bond facet: letterCategory +Source: k, destination: j +source descriptor: K +destination descriptor: J +proposing predecessor bond +urgency: 100.0, number: 1, bin: 7 +top_down_bond_scout__category +initial : relevance = 100, unhappiness=89 +target : relevance = 50, unhappiness=89 +target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond +source: k, destination: j +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between j and k from other string +bond strength = 94 for successor bond between j and k +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == abc from initial string +no incompatible bonds +no incompatible Groups +building group +object chosen = predecessor bond between j and k from other string +bond strength = 48 for predecessor bond between j and k +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +initial : relevance = 100, unhappiness=78 +target : relevance = 50, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between j and k from other string +number of incompatibleBonds: 0 +no incompatible bonds +no incompatible groups +building bond successor bond between j and k +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=78 +target : relevance = 100, unhappiness=89 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-bond-scout--category, with urgency: 4 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = group[0:2] == ijk from target string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == ijk from target string +no incompatible bonds +no incompatible Groups +building group +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between j and k from other string +number of incompatibleBonds: 1 +successor bond between j and k +lost fight with successor bond between j and k +failed to break bonds: Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: i, destination: j +object chosen = successor bond between i and j from other string +bond strength = 96 for successor bond between i and j +succeeded: posting bond-builder +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +object chosen = k from target string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=78 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +Post top down: top-down-bond-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--direction, with urgency: 3 +Post top down: top-down-group-scout--category, with urgency: 4 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = c +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from c to successor +proposing group from a to c +urgency: 100.0, number: 1, bin: 7 +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction +source chosen = k +firstBond: successor bond between j and k +possible group: successor bond between j and k +trying from k to successor +proposing group from i to k +object chosen = group[0:2] == ijk from target string +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: c, destination: b +object chosen = successor bond between b and c from other string +bond strength = 96 for successor bond between b and c +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-description-scout, with urgency: 5 +posting bottom up codelets +object chosen = successor bond between b and c from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = j from target string +destination: k +chosen bond facet: letterCategory +Source: j, destination: k +source descriptor: J +destination descriptor: K +proposing successor bond +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = group[1:2] == bc from initial string +no incompatible bonds +lost fight with group[0:2] == abc +failed to break Groups: Fizzle +object chosen = a from initial string +destination: b +chosen bond facet: letterCategory +Source: a, destination: b +source descriptor: A +destination descriptor: B +proposing successor bond +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = a +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from a to successor +proposing group from a to c +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = group[0:2] == abc from initial string +Post top down: top-down-group-scout--direction, with urgency: 3 +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = group[0:2] == abc from initial string +object chosen = predecessor bond between i and j from other string +number of incompatibleBonds: 1 +successor bond between i and j +lost fight with successor bond between i and j +failed to break bonds: Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +to object: b +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +urgency: 100.0, number: 2, bin: 7 +object chosen = group[0:2] == abc from initial string +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between b and c +possible group: successor bond between b and c +trying from b to successor +proposing group from a to c +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +Post top down: top-down-bond-scout--category, with urgency: 4 +posting bottom up codelets +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == ijk from target string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +object chosen = group[0:2] == ijk from target string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond +source: j, destination: k +object chosen = successor bond between j and k from other string +bond strength = 96 for successor bond between j and k +succeeded: posting bond-builder +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: b, destination: a +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between j and k from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle +object chosen = successor bond between i and j from other string +already exists: activate descriptors & Fizzle +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction +source chosen = b +firstBond: successor bond between a and b +possible group: successor bond between a and b +trying from b to successor +proposing group from a to c +posting bottom up codelets +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for group +object chosen = group[0:2] == abc from initial string +object chosen = group[0:2] == abc from initial string +already exists...activate descriptors & fizzle +top_down_bond_scout__category +initial : relevance = 100, unhappiness=15 +target : relevance = 100, unhappiness=15 +initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond +source: a, destination: b +object chosen = group[0:2] == abc from initial string +object chosen = successor bond between a and b from other string +bond strength = 96 for successor bond between a and b +succeeded: posting bond-builder +object chosen = successor bond between a and b from other string +already exists: activate descriptors & Fizzle diff --git a/copycat/__init__.py b/copycat/__init__.py index 67e5cc9..14c0cc1 100644 --- a/copycat/__init__.py +++ b/copycat/__init__.py @@ -1 +1,2 @@ from .copycat import Copycat, Reporter # noqa +from .plot import plot_answers diff --git a/copycat/plot.py b/copycat/plot.py new file mode 100644 index 0000000..8601359 --- /dev/null +++ b/copycat/plot.py @@ -0,0 +1,18 @@ +import matplotlib.pyplot as plt; plt.rcdefaults() +import numpy as np +import matplotlib.pyplot as plt + + +def plot_answers(answers): + answers = sorted(answers.items(), key=lambda kv : kv[1]['count']) + objects = [t[0] + ' (temp:{})'.format(t[1]['avgtemp']) for t in answers] + yvalues = [t[1]['count'] for t in answers] + + y_pos = np.arange(len(objects)) + + plt.bar(y_pos, yvalues, align='center', alpha=0.5) + plt.xticks(y_pos, objects) + plt.ylabel('Count') + plt.title('Answers') + plt.show() + diff --git a/main.py b/main.py index 258cd4c..d03d0f3 100755 --- a/main.py +++ b/main.py @@ -35,7 +35,7 @@ final temperature of the workspace; lower means "more elegant". import argparse import logging -from copycat import Copycat, Reporter +from copycat import Copycat, Reporter, plot_answers class SimpleReporter(Reporter): @@ -55,6 +55,7 @@ def main(): parser = argparse.ArgumentParser() parser.add_argument('--seed', type=int, default=None, help='Provide a deterministic seed for the RNG.') parser.add_argument('--iterations', type=int, default=1, help='Run the given case this many times.') + parser.add_argument('--plot', action='store_true', help='Plot a bar graph of answer distribution') parser.add_argument('initial', type=str, help='A...') parser.add_argument('modified', type=str, help='...is to B...') parser.add_argument('target', type=str, help='...as C is to... what?') @@ -66,6 +67,8 @@ def main(): for answer, d in sorted(iter(answers.items()), key=lambda kv: kv[1]['avgtemp']): print('%s: %d (avg time %.1f, avg temp %.1f)' % (answer, d['count'], d['avgtime'], d['avgtemp'])) + if options.plot: + plot_answers(answers) if __name__ == '__main__': main() From 6142033631c782efe1296613f646a42eddec3ae5 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Fri, 29 Sep 2017 13:18:03 -0600 Subject: [PATCH 04/20] Stop tracking copycat log The log should still appear locally. --- .gitignore | 1 + copycat.log | 90147 -------------------------------------------------- 2 files changed, 1 insertion(+), 90147 deletions(-) delete mode 100644 copycat.log diff --git a/.gitignore b/.gitignore index 55cac1c..2e1ebd5 100644 --- a/.gitignore +++ b/.gitignore @@ -20,6 +20,7 @@ pip-log.txt .coverage .tox .log +copycat.log # Other filesystems .svn diff --git a/copycat.log b/copycat.log deleted file mode 100644 index 22ead00..0000000 --- a/copycat.log +++ /dev/null @@ -1,90147 +0,0 @@ -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = a from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=94 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = group[1:2] == jk from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = i from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -lost fight with group[0:1] == ij -failed to break groups: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -destination: k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:1] == ij from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -initial : relevance = 0, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 65 for predecessor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=80 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=80 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=80 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=80 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=80 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=80 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 95 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -lost fight with group[0:1] == ij -failed to break Groups: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = j from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 95 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[0:1] == ij -won fight with group[0:1] == ij -broke the Groups -building group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = b from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -no incompatible bonds -won fight with group[0:2] == ijk -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = Correspondence between a and i from other string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = b from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between b and c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = a from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = b from initial string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 69 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 0, unhappiness=84 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=84 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between a and b -broke the bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = a from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = i from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = Correspondence between a and i from other string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = c from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = k from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = k from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = a from initial string -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = predecessor bond between b and c from other string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = j from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = j from target string -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = i from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: b, destination: a -object chosen = group[0:1] == ij from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=100 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == jk from target string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 95 for successor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 95 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = successor bond between j and k from other string -bond strength = 95 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 95 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = k -no firstBond -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = a from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -object chosen = j from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = i from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -object chosen = group[1:2] == bc from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = k from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = i from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = k from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = Correspondence between a and i from other string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = i from target string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = b from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = Correspondence between a and i from other string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = a from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ij from target string -destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -won fight with successor bond between j and k -broke the bonds -won fight with group[0:1] == ij -won fight with group[0:1] == ij -broke the Groups -building group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = Correspondence between c and k from other string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = b from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -object chosen = successor bond between b and c from other string -bond strength = 69 for successor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -bond strength = 69 for successor bond between b and c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 69 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = j from target string -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 78 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 100, unhappiness=94 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=94 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = c from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = Correspondence between b and j from other string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = j from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ab from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == bc from initial string -object chosen = c from initial string -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -won fight with successor bond between b and c -broke the bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = c from initial string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from j to k -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 78 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 78 for predecessor bond between b and c -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 78 for predecessor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = c from initial string -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=18 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ab from initial string -no incompatible bonds -won fight with group[0:2] == abc -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -won fight with successor bond between j and k -broke the bonds -no incompatible Groups -building group -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = b -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = k from target string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = j from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -initial : relevance = 33, unhappiness=89 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -to object: c -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -source: c, destination: group[0:1] == ab -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -source: group[0:1] == ab, destination: c -initial : relevance = 0, unhappiness=82 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=82 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 0, unhappiness=82 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -object chosen = a from initial string -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = c from initial string -destination: group[0:1] == ab -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ab from initial string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -source: group[0:1] == ab, destination: c -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:1] == ab from initial string -destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = group[0:1] == ab from initial string -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ab from initial string -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:1] == ab from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -to object: c -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ab from initial string -destination: c -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between j and k -initial : relevance = 33, unhappiness=82 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = group[0:1] == ij from target string -initial : relevance = 33, unhappiness=82 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -initial : relevance = 33, unhappiness=82 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -object chosen = group[0:1] == ij from target string -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for group -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -destination: group[0:1] == ab -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: group[0:1] == ab -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 1 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 33, unhappiness=82 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 95 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ab from initial string -destination: c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -won fight with group[0:1] == ab -won fight with group[0:1] == ab -broke the Groups -building group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between a and b -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -object chosen = b from initial string -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = b from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = a from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = k from target string -object chosen = b from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = b from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -object chosen = group[0:1] == ij from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = a from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 78 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 24.1, number: 2, bin: 2 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 24.1, number: 2, bin: 2 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = j from target string -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 78 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 0, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 78 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = successor bond between j and k from other string -posting bottom up codelets -object chosen = successor bond between j and k from other string -urgency: 24.1, number: 2, bin: 2 -object chosen = predecessor bond between a and b from other string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = Correspondence between c and k from other string -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -urgency: 24.1, number: 2, bin: 2 -object chosen = successor bond between i and j from other string -object chosen = successor bond between i and j from other string -urgency: 24.1, number: 2, bin: 2 -object chosen = successor bond between j and k from other string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -posting bottom up codelets -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -object chosen = successor bond between j and k from other string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -urgency: 24.1, number: 2, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = Correspondence between c and k from other string -object chosen = Correspondence between b and j from other string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = predecessor bond between b and c from other string -object chosen = Correspondence between b and j from other string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 78 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 78 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 78 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 78 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between b and c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -object chosen = group[1:2] == bc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ab from initial string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[1:2] == bc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: group[1:2] == bc -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:1] == ab from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[1:2] == bc -no firstBond -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: group[1:2] == bc -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: group[1:2] == bc -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ab from initial string -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[1:2] == bc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == bc from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[1:2] == bc -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[1:2] == bc -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[1:2] == bc, destination: a -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == bc from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[1:2] == bc -no firstBond -no firstBond2 -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -object chosen = group[0:2] == abc from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between a and b -broke the bonds -won fight with group[1:2] == bc -won fight with group[1:2] == bc -broke the Groups -building group -object chosen = group[0:1] == ab from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -object chosen = group[0:1] == ab from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 69 for predecessor bond between a and b -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = j from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = b from initial string -object chosen = i from target string -object chosen = i from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = a from initial string -object chosen = predecessor bond between b and c from other string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = a from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = c from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -object chosen = b from initial string -object chosen = i from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = j from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = a from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -urgency: 24.1, number: 2, bin: 2 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 0, unhappiness=18 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between b and c -initial : relevance = 50, unhappiness=18 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -won fight with successor bond between b and c -broke the bonds -no incompatible Groups -building group -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between j and k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between i and j -broke the bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: predecessor bond between b and c -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = i from target string -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = a from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = c from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = b from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = i from target string -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = b from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = a from initial string -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = j from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between i and j -object chosen = group[1:2] == jk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = j from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -object chosen = c from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = a from initial string -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = b from initial string -object chosen = b from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -initial : relevance = 50, unhappiness=78 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between b and c -broke the bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = j from target string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -object chosen = group[1:2] == jk from target string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = group[1:2] == jk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = i from target string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -initial : relevance = 0, unhappiness=84 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -top_down_bond_scout__category -initial : relevance = 50, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = i from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:1] == ab from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond successor bond between i and j -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = i from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == jk from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = b from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -firstBond2: predecessor bond between j and k -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = b from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -object chosen = successor bond between i and j from other string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:1] == ab from initial string -object chosen = c from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = i from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = i -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = b from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = b from initial string -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -won fight with predecessor bond between i and j -broke the bonds -no incompatible Groups -building group -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -won fight with successor bond between j and k -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = j from target string -object chosen = i from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = b from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between j and k from other string -bond strength = 69 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between b and c -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between b and c -no firstBond2 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = c from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between j and k from other string -bond strength = 69 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[1:2] == bc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 69 for predecessor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -won fight with successor bond between j and k -broke the bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between a and b -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -initial : relevance = 0, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = b from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -object chosen = a from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = a from initial string -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = j -no firstBond -no firstBond2 -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: j, destination: i -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = k from target string -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -initial : relevance = 0, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -initial : relevance = 0, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = k from target string -object chosen = k from target string -object chosen = k from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = k from target string -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = c from initial string -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = i from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 78 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = a from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=84 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between b and c -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond successor bond between i and j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = a from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:1] == ij from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[1:2] == jk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = Correspondence between a and i from other string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -posting bottom up codelets -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -object chosen = group[1:2] == jk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = i from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = i from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -object chosen = group[1:2] == bc from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between a and b from other string -bond strength = 78 for successor bond between a and b -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=84 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=84 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[1:2] == bc from initial string -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = a from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 33, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 33, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 1 bonds for bond -to object: k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 33, unhappiness=80 -target : relevance = 33, unhappiness=82 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 33, unhappiness=80 -target : relevance = 33, unhappiness=82 -target string selected: ijk with 3 letters, 4 objects, 1 bonds for group -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=82 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=82 -target string selected: ijk with 3 letters, 4 objects, 1 bonds for bond -source: k, destination: group[0:1] == ij -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[0:1] == ij -lost fight with group[0:1] == ij -failed to break Groups: Fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=82 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=82 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -object chosen = successor bond between i and j from other string -bond strength = 95 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=82 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=82 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 66, unhappiness=82 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=82 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:1] == ab -won fight with group[0:1] == ab -broke the Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between j and k from other string -bond strength = 95 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[1:2] == bc from initial string -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: group[0:1] == ij -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: group[0:1] == ij -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = k from target string -destination: group[0:1] == ij -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[0:1] == ij -won fight with group[0:1] == ij -broke the Groups -building group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = b from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -object chosen = b from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = Correspondence between b and j from other string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = a from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = k from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 69 for successor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = j -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = group[0:1] == ij from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = b from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: successor bond between i and j -no firstBond2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -object chosen = i from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = j from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -posting bottom up codelets -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 2, bin: 7 -object chosen = j from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 78 for predecessor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = j from target string -object chosen = successor bond between i and j from other string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -object chosen = Correspondence between c and k from other string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = b from initial string -object chosen = group[0:1] == ab from initial string -object chosen = a from initial string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = a from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -urgency: 100.0, number: 2, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = b from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = i -no firstBond -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = j from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between b and c -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = k from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = c from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = a from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = j from target string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -object chosen = j from target string -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 78 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: c, destination: b -object chosen = i from target string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = b from initial string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = k from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = c from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = c from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -top_down_bond_scout__category -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = a from initial string -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = c from initial string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: b, destination: a -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = i from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = c from initial string -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = b from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = i from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = b from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = j -no firstBond -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = k from target string -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between j and k -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between a and b -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = group[1:2] == jk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between b and c -broke the bonds -no incompatible Groups -building group -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -won fight with successor bond between b and c -won fight with successor bond between a and b -broke the bonds -won fight with group[0:2] == abc -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[1:2] == jk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == jk from target string -no incompatible bonds -won fight with group[0:2] == ijk -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = j from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = b from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: j, destination: i -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=94 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=94 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: j, destination: k -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = i from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = i from target string -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = a from initial string -object chosen = i from target string -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = k from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = j from target string -object chosen = k from target string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = a from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = c from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = c from initial string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = b from initial string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -object chosen = predecessor bond between a and b from other string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = k -no firstBond -no firstBond2 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -object chosen = a from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 78 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = i from target string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[1:2] == jk from target string -object chosen = a from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -firstBond2: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from j to k -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == jk from target string -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ij from target string -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -object chosen = group[1:2] == jk from target string -no incompatible bonds -no incompatible Groups -building group -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = j from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = Correspondence between b and j from other string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = j from target string -object chosen = i from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = successor bond between b and c from other string -bond strength = 69 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = a from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between b and c -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between i and j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -initial : relevance = 50, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -initial : relevance = 50, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:1] == ij from target string -initial : relevance = 50, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:1] == ab from initial string -object chosen = j from target string -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between i and j -object chosen = k from target string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[1:2] == jk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:1] == ij from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between j and k -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: predecessor bond between i and j -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = b from initial string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = b -no firstBond -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = a from initial string -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: a -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between i and j -object chosen = b from initial string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = b -no firstBond -no firstBond2 -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = i from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: c -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -object chosen = i from target string -object chosen = i from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = b -no firstBond -no firstBond2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = b from initial string -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = b from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = j from target string -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = j -no firstBond -no firstBond2 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = k from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = i -no firstBond -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: k, destination: j -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = k -no firstBond -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: j, destination: k -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = j -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: j -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: i -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == abc from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for group -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: j -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[1:2] == bc from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[1:2] == bc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == jk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:1] == ij from target string -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -firstBond2: predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = b from initial string -object chosen = group[1:2] == bc from initial string -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = b from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = j from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = b from initial string -object chosen = group[1:2] == bc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = i from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -object chosen = group[1:2] == jk from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between b and c -broke the bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[1:2] == jk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between i and j -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -initial : relevance = 50, unhappiness=18 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between b and c -broke the bonds -no incompatible Groups -building group -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = a from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -urgency: 24.1, number: 2, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = Correspondence between b and j from other string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = k from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = k from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = b from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = j from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ij from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: c -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = c from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = c from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 33, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=89 -target : relevance = 33, unhappiness=82 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 100, unhappiness=89 -target : relevance = 33, unhappiness=82 -target string selected: ijk with 3 letters, 4 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = k from target string -object chosen = group[0:1] == ij from target string -destination: k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = i from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=84 -target : relevance = 33, unhappiness=96 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=82 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 33, unhappiness=82 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = successor bond between i and j from other string -bond strength = 95 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[0:1] == ij -lost fight with group[0:1] == ij -failed to break Groups: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[0:1] == ij -won fight with group[0:1] == ij -broke the Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -object chosen = Correspondence between a and i from other string -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = c from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = b from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = j from target string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -object chosen = predecessor bond between a and b from other string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = b from initial string -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[1:2] == jk from target string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = k from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = k from target string -object chosen = k from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = i from target string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: c -object chosen = j from target string -object chosen = k from target string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: b, destination: a -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = j from target string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = i from target string -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: i -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: i -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -object chosen = c from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = b from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = a -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = Correspondence between c and k from other string -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = j from target string -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = b from initial string -object chosen = group[1:2] == bc from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = j from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between b and c -broke the bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = i from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == jk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between i and j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 69 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[1:2] == jk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=94 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=94 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=94 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=94 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=94 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -won fight with group[1:2] == jk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -firstBond2: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from j to k -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[1:2] == jk, destination: i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[1:2] == jk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from j to k -object chosen = i from target string -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -destination: i -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[1:2] == jk -no firstBond -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -won fight with successor bond between j and k -broke the bonds -won fight with group[1:2] == jk -won fight with group[1:2] == jk -broke the Groups -building group -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 24.1, number: 2, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:1] == ij from target string -no incompatible bonds -won fight with group[0:2] == ijk -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 50, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = i from target string -object chosen = group[0:1] == ab from initial string -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -object chosen = b from initial string -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ab, destination: c -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 95 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 95 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ab from initial string -destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -lost fight with group[0:1] == ab -failed to break Groups: Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 95 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -lost fight with group[0:1] == ab -failed to break Groups: Fizzle -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -won fight with group[0:1] == ab -won fight with group[0:1] == ab -broke the Groups -building group -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = i from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: b -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = c from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 69 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = i from target string -object chosen = j from target string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between a and b from other string -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = k from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = i from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = a from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = j from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=89 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = b from initial string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = b from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ab from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -object chosen = b from initial string -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = b from initial string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: predecessor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = group[0:1] == ab from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:1] == ab -broke the groups -building bond predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -initial : relevance = 0, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -object chosen = i from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = b from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = b from initial string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = Correspondence between a and i from other string -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: c, destination: b -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: c -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: b, destination: a -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 50, unhappiness=100 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = c from initial string -initial : relevance = 50, unhappiness=100 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -initial : relevance = 50, unhappiness=100 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=100 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=94 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = c from initial string -object chosen = c from initial string -object chosen = c from initial string -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 0, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 66, unhappiness=89 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 95 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 95 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ab, destination: c -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: group[0:1] == ab -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -initial : relevance = 66, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: group[0:1] == ab -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=92 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=92 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -object chosen = group[0:1] == ab from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 33, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:1] == ab -won fight with group[0:1] == ab -broke the Groups -building group -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = k from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = k from target string -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = a from initial string -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between a and b from other string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: b, destination: c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = b from initial string -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = k from target string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between a and b -failed to break bonds: Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = c from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond successor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = k from target string -object chosen = c from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ab from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -object chosen = i from target string -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = c from initial string -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == bc from initial string -object chosen = c from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == bc from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = i from target string -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = k from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = b from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:1] == ab from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = i from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for group -object chosen = group[0:1] == ij from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: j, destination: k -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=100 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond successor bond between i and j -object chosen = a from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = k from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 24.1, number: 2, bin: 2 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between a and b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -initial : relevance = 50, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:1] == ab from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[1:2] == bc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 69 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = a from initial string -object chosen = successor bond between a and b from other string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -object chosen = group[0:1] == ij from target string -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = group[0:1] == ab from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = group[0:2] == ijk from target string -won fight with successor bond between j and k -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = group[0:1] == ij from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:1] == ij from target string -no incompatible bonds -won fight with group[0:2] == ijk -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:1] == ab from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between b and c -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = b from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = i from target string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = b from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = b from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -object chosen = j from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = group[0:1] == ij from target string -object chosen = c from initial string -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: j, destination: i -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = b from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between i and j from other string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = k from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 50, unhappiness=100 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 69 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = i from target string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -initial : relevance = 50, unhappiness=78 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = b from initial string -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:1] == ij from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[1:2] == jk from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = b from initial string -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = c from initial string -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ij from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 78 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=18 -target : relevance = 33, unhappiness=80 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=18 -target : relevance = 33, unhappiness=80 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=18 -target : relevance = 33, unhappiness=80 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=18 -target : relevance = 33, unhappiness=80 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:1] == ij -failed to break Groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -destination: k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:1] == ij -broke the groups -building bond predecessor bond between i and j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = i from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == jk from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = group[1:2] == jk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=18 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = i from target string -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = j from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = i from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = j from target string -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = k from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -object chosen = a from initial string -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:1] == ij from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[1:2] == jk, destination: i -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[1:2] == jk -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[1:2] == jk from target string -destination: i -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -won fight with group[1:2] == jk -broke the groups -building bond successor bond between j and k -object chosen = k from target string -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 78 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 78 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = Correspondence between b and j from other string -posting bottom up codelets -object chosen = k from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = Correspondence between a and i from other string -posting bottom up codelets -object chosen = successor bond between a and b from other string -object chosen = successor bond between a and b from other string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 78 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = i from target string -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = j from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = b from initial string -object chosen = k from target string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between b and c -no firstBond2 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between b and c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between i and j -broke the bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between b and c -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -initial : relevance = 50, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = group[0:1] == ab from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 66, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 95 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between b and c -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -won fight with group[0:1] == ab -won fight with group[0:1] == ab -broke the Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = k from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 78 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 0, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 69 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = i from target string -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = b from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = k from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = group[1:2] == jk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -bond strength = 95 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[1:2] == jk, destination: i -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[1:2] == jk -won fight with group[1:2] == jk -broke the Groups -building group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between j and k -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == jk from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -firstBond2: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from j to k -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -object chosen = group[0:1] == ij from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == jk from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:1] == ij from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: k -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -urgency: 100.0, number: 1, bin: 7 -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:1] == ij from target string -destination: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: group[0:1] == ij -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -won fight with group[0:1] == ij -won fight with group[0:1] == ij -broke the Groups -building group -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=80 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=80 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=18 -target : relevance = 100, unhappiness=80 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 78 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -urgency: 24.1, number: 2, bin: 2 -urgency: 24.1, number: 2, bin: 2 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between b and c from other string -bond strength = 78 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=18 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=18 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -won fight with successor bond between j and k -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = Correspondence between a and i from other string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = group[0:1] == ab from initial string -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=94 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = group[0:1] == ab from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = group[0:1] == ij from target string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:1] == ij from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -firstBond2: predecessor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = k from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between b and c from other string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = j from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 78 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=84 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = i from target string -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = j from target string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: i -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for group -object chosen = i from target string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = group[0:1] == ij from target string -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 1 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=82 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=82 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = i from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=82 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 95 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:1] == ij from target string -destination: k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 95 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[0:1] == ij -won fight with group[0:1] == ij -broke the Groups -building group -object chosen = i from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:1] == ij from target string -no incompatible bonds -won fight with group[0:2] == ijk -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = i from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = i from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = a from initial string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = a from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -object chosen = group[0:1] == ab from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = b from initial string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = k from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -object chosen = predecessor bond between a and b from other string -bond strength = 69 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = i from target string -object chosen = group[1:2] == jk from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 24.1, number: 2, bin: 2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 24.1, number: 2, bin: 2 -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between j and k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = b from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = j from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = k from target string -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: j, destination: i -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = j from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -firstBond2: predecessor bond between j and k -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = j from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -initial : relevance = 100, unhappiness=18 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=18 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=18 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = i from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = i from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: i, destination: j -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = c from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = b from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ij from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = group[0:1] == ij from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = b from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = k from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = j from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = i from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = j from target string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ab from initial string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = b from initial string -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -won fight with group[0:1] == ab -won fight with group[0:1] == ab -broke the Groups -building group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = i from target string -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = k from target string -object chosen = j from target string -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -initial : relevance = 0, unhappiness=94 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: successor bond between b and c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -initial : relevance = 50, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == jk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = group[0:1] == ij from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = b from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between b and c -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = predecessor bond between b and c from other string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 50, unhappiness=79 -target : relevance = 33, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 50, unhappiness=79 -target : relevance = 33, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=79 -target : relevance = 33, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ab from initial string -object chosen = group[1:2] == bc from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 33, unhappiness=79 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 33, unhappiness=79 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=79 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -initial : relevance = 33, unhappiness=79 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 33, unhappiness=79 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -urgency: 100.0, number: 3, bin: 7 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: group[0:1] == ab -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ij, destination: k -object chosen = group[1:2] == bc from initial string -object chosen = group[0:1] == ij from target string -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == bc from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: group[0:1] == ij -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = group[1:2] == bc from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ab from initial string -destination: c -object chosen = group[0:1] == ij from target string -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ij -no firstBond -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ab, destination: c -object chosen = predecessor bond between a and b from other string -bond strength = 65 for predecessor bond between a and b -object chosen = group[1:2] == bc from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 33, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -won fight with group[0:1] == ij -won fight with group[0:1] == ij -broke the Groups -building group -object chosen = group[0:1] == ab from initial string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ab, destination: c -object chosen = group[0:1] == ij from target string -object chosen = i from target string -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ab, destination: c -object chosen = predecessor bond between i and j from other string -bond strength = 78 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: group[0:1] == ab -object chosen = successor bond between b and c from other string -bond strength = 65 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -lost fight with group[0:1] == ab -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: group[0:1] == ab -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ab, destination: c -object chosen = group[1:2] == bc from initial string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: group[0:1] == ab -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = a from initial string -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = c from initial string -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -destination: group[0:1] == ab -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ab from initial string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 33, unhappiness=80 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:1] == ab from initial string -destination: c -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=80 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: group[0:1] == ab -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ab, destination: c -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:1] == ab -broke the groups -building bond predecessor bond between a and b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = a from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -firstBond2: predecessor bond between j and k -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: predecessor bond between b and c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[0:2] == ijk from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = k from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -urgency: 24.1, number: 2, bin: 2 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: successor bond between i and j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=18 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=18 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -object chosen = k from target string -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = b from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = Correspondence between a and i from other string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = c from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = b from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: c -object chosen = c from initial string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -posting bottom up codelets -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = Correspondence between c and k from other string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = c from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = k from target string -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to j -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ij from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for direction -source chosen = c -no firstBond -no firstBond2 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = a from initial string -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -object chosen = b from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = a -no firstBond -no firstBond2 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = a from initial string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = group[1:2] == jk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[1:2] == bc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -initial : relevance = 50, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = i from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between i and j from other string -bond strength = 78 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -urgency: 100.0, number: 2, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = b from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = c from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = a from initial string -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -source: a, destination: b -object chosen = successor bond between i and j from other string -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=100 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between a and b -object chosen = group[0:2] == abc from initial string -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -no firstBond -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = b from initial string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = i from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 69 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -firstBond2: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -object chosen = a from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between c and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = a from initial string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: predecessor bond between i and j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = successor bond between a and b from other string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -object chosen = i from target string -object chosen = i from target string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -object chosen = group[1:2] == bc from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -firstBond2: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from j to predecessor -proposing group from i to j -object chosen = group[1:2] == bc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = k from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond predecessor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=78 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = j from target string -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = c from initial string -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between a and b -broke the bonds -no incompatible Groups -building group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 6 -posting bottom up codelets -object chosen = j from target string -object chosen = c from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == bc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[0:1] == ij -won fight with group[0:1] == ij -broke the Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond successor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = a from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between i and j from other string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: a -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = i from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 69 for predecessor bond between i and j -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = group[1:2] == jk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 0, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -building bond successor bond between j and k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between a and b -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -won fight with successor bond between j and k -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from j to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = a from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -no firstBond2 -object chosen = group[1:2] == jk from target string -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:1] == ij from target string -object chosen = b from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between i and j -broke the bonds -no incompatible Groups -building group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 69 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between b and c -initial : relevance = 0, unhappiness=84 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=84 -target : relevance = 100, unhappiness=18 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: predecessor bond between b and c -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = k from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between a and b -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -urgency: 24.1, number: 2, bin: 2 -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between i and j -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 94 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -building bond successor bond between i and j -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -won fight with successor bond between i and j -broke the bonds -no incompatible Groups -building group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 69 for predecessor bond between a and b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between i and j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = b from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = predecessor bond between j and k from other string -bond strength = 78 for predecessor bond between j and k -object chosen = k from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=94 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: a -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: c, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -initial : relevance = 50, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:1] == ab from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = c from initial string -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 33, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:1] == ab -failed to break groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:1] == ab -failed to break Groups: Fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:1] == ab -broke the groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -no incompatible bonds -won fight with group[0:1] == ab -won fight with group[0:1] == ab -broke the Groups -building group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: predecessor bond between b and c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond successor bond between i and j -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = i from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -initial : relevance = 50, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ij from target string -object chosen = group[1:2] == bc from initial string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for group -object chosen = i from target string -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = group[1:2] == jk from target string -initial : relevance = 0, unhappiness=79 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from a to c -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between i and j -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between b and c -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -won fight with predecessor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 50, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ij from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[1:2] == jk from target string -no incompatible bonds -no incompatible Groups -building group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 66, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -lost fight with group[1:2] == jk -failed to break Groups: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 95 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 66, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -won fight with group[1:2] == jk -won fight with group[1:2] == jk -broke the Groups -building group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = group[1:2] == bc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ab from initial string -object chosen = a from initial string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = a from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:1] == ab from initial string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -object chosen = group[0:1] == ab from initial string -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == bc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = group[0:1] == ab from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:1] == ab from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == ijk from target string -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 33, unhappiness=92 -target : relevance = 0, unhappiness=18 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -object chosen = b from initial string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 33, unhappiness=92 -target : relevance = 100, unhappiness=18 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = a from initial string -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 33, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 33, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = group[0:1] == ab -no firstBond -no firstBond2 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -destination: group[0:1] == ab -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: group[0:1] == ab, destination: c -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: c -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 66, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = group[0:2] == abc from initial string -no incompatible bonds -won fight with group[0:1] == ab -won fight with group[0:1] == ab -broke the Groups -building group -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:1] == ab from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = j from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = c from initial string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -posting bottom up codelets -object chosen = c from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: a -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:1] == ab from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = b from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -object chosen = b from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = k from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -source: k, destination: j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between j and k from other string -bond strength = 91 for successor bond between j and k -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 94 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -object chosen = a from initial string -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between b and c -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -object chosen = a from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = c from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: a, destination: b -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between a and b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to b -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: k -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -object chosen = j from target string -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = successor bond between j and k from other string -bond strength = 69 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 50, unhappiness=84 -target : relevance = 50, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to b -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=94 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 94 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = c from initial string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -won fight with successor bond between b and c -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between b and c -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: a -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=79 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 0, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -object chosen = c from initial string -initial : relevance = 0, unhappiness=78 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = k -no firstBond -no firstBond2 -initial : relevance = 0, unhappiness=78 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -building bond successor bond between a and b -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = i from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ab from initial string -object chosen = group[0:1] == ij from target string -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -won fight with predecessor bond between j and k -broke the bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond successor bond between j and k -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to k -object chosen = group[1:2] == bc from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -won fight with group[0:2] == ijk -broke the groups -building bond predecessor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=78 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from j to predecessor -proposing group from j to k -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = group[1:2] == jk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from j to k -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: i -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == abc from initial string -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = group[0:1] == ab from initial string -object chosen = group[1:2] == bc from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == jk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ij from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between a and b from other string -bond strength = 94 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:1] == ab from initial string -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -lost fight with successor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -won fight with successor bond between a and b -broke the bonds -no incompatible Groups -building group -object chosen = group[1:2] == bc from initial string -object chosen = group[1:2] == bc from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=79 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:1] == ab from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: predecessor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: i, destination: j -urgency: 100.0, number: 1, bin: 7 -object chosen = group[1:2] == bc from initial string -object chosen = i from target string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = j from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -won fight with predecessor bond between a and b -broke the bonds -lost fight with group[0:2] == abc -failed to break groups: Fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:1] == ab from initial string -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=79 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -building bond predecessor bond between i and j -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -object chosen = group[1:2] == bc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for group -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = j from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: k -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:1] == ij from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between a and b from other string -bond strength = 96 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = predecessor bond between j and k from other string -bond strength = 96 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 1 -predecessor bond between j and k -lost fight with predecessor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == jk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -posting bottom up codelets -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 1 -predecessor bond between a and b -lost fight with predecessor bond between a and b -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -possible group: predecessor bond between j and k -trying from k to predecessor -proposing group from i to k -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: predecessor bond between i and j -possible group: predecessor bond between i and j -trying from i to predecessor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -firstBond2: predecessor bond between b and c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 96 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = predecessor bond between b and c from other string -bond strength = 96 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: predecessor bond between j and k -no firstBond2 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 2, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 1 -predecessor bond between i and j -lost fight with predecessor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -no firstBond2 -object chosen = c from initial string -posting bottom up codelets -urgency: 100.0, number: 2, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from a to predecessor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between a and b -possible group: predecessor bond between a and b -trying from b to predecessor -proposing group from a to c -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[1:2] == jk from target string -no incompatible bonds -lost fight with group[0:2] == ijk -failed to break Groups: Fizzle -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 23.200000000000003, number: 1, bin: 2 -urgency: 100.0, number: 1, bin: 7 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = b from initial string -object chosen = successor bond between a and b from other string -bond strength = 48 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = i from target string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = i from target string -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = a from initial string -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between a and b from other string -bond strength = 78 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: b, destination: c -object chosen = i from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -initial : relevance = 100, unhappiness=84 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -target string selected: ijk with 3 letters, 3 objects, 0 bonds for bond -to object: j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=78 -target : relevance = 0, unhappiness=100 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=94 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -to object: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between i and j from other string -bond strength = 94 for predecessor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -object chosen = k from target string -object chosen = i from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 50, unhappiness=79 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: j, destination: i -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -to object: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between i and j -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between i and j -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=89 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to k -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between i and j -firstBond2: successor bond between j and k -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -object chosen = group[0:2] == abc from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -no firstBond2 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: i -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -urgency: 100.0, number: 1, bin: 7 -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = c from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -object chosen = k from target string -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between i and j from other string -bond strength = 69 for successor bond between i and j -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = successor bond between j and k from other string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = c from initial string -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -object chosen = a from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between a and b from other string -bond strength = 48 for predecessor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -won fight with successor bond between j and k -broke the bonds -no incompatible groups -building bond predecessor bond between j and k -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=78 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for direction -source chosen = i -firstBond: successor bond between i and j -possible group: successor bond between i and j -trying from i to successor -proposing group from i to j -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -object chosen = j from target string -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -target string selected: ijk with 3 letters, 3 objects, 2 bonds for bond -source: k, destination: j -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -initial : relevance = 0, unhappiness=100 -target : relevance = 50, unhappiness=84 -initial string selected: abc with 3 letters, 3 objects, 0 bonds for bond -to object: b -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -won fight with predecessor bond between j and k -broke the bonds -no incompatible Groups -building group -object chosen = a from initial string -object chosen = successor bond between a and b from other string -bond strength = 91 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = c from initial string -initial : relevance = 0, unhappiness=100 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = j from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:1] == ij from target string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -initial : relevance = 50, unhappiness=100 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -trying to break incompatible correspondences -won fight with Correspondence between c and k -building bond predecessor bond between b and c -object chosen = c from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=89 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from b to predecessor -proposing group from b to c -initial : relevance = 50, unhappiness=89 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: i -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == abc from initial string -lost fight with predecessor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -to object: c -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to b -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:1] == ab from initial string -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -possible group: predecessor bond between b and c -trying from c to predecessor -proposing group from b to c -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: predecessor bond between b and c -no firstBond2 -object chosen = group[1:2] == bc from initial string -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 50, unhappiness=84 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=84 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = b -firstBond: predecessor bond between b and c -firstBond2: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to b -object chosen = successor bond between b and c from other string -bond strength = 94 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 1 -predecessor bond between b and c -won fight with predecessor bond between b and c -broke the bonds -no incompatible groups -building bond successor bond between b and c -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:1] == ab from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -won fight with successor bond between i and j -broke the bonds -lost fight with group[0:2] == ijk -failed to break groups: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: a, destination: b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = i from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -no incompatible groups -trying to break incompatible correspondences -lost fight with Correspondence between a and i -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between a and b from other string -bond strength = 91 for predecessor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -initial : relevance = 0, unhappiness=78 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = predecessor bond between a and b from other string -number of incompatibleBonds: 1 -successor bond between a and b -won fight with successor bond between a and b -broke the bonds -won fight with group[0:2] == abc -broke the groups -trying to break incompatible correspondences -won fight with Correspondence between a and i -building bond predecessor bond between a and b -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -top_down_bond_scout__category -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for bond -source: c, destination: b -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = j -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from j to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from b to c -initial : relevance = 50, unhappiness=79 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 3 objects, 2 bonds for group -object chosen = group[1:2] == bc from initial string -object chosen = group[0:2] == ijk from target string -initial : relevance = 50, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == abc from initial string -won fight with predecessor bond between a and b -broke the bonds -no incompatible Groups -building group -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=79 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -no firstBond2 -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -object chosen = b from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -object chosen = predecessor bond between b and c from other string -bond strength = 91 for predecessor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--direction, with urgency: 3 -posting bottom up codelets -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = predecessor bond between b and c from other string -number of incompatibleBonds: 1 -successor bond between b and c -lost fight with successor bond between b and c -failed to break bonds: Fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = b from initial string -object chosen = group[1:2] == bc from initial string -object chosen = c from initial string -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -firstBond2: successor bond between a and b -urgency: 100.0, number: 2, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -posting bottom up codelets -object chosen = a from initial string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = predecessor bond between j and k from other string -bond strength = 91 for predecessor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = predecessor bond between i and j from other string -bond strength = 91 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = j from target string -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -object chosen = c from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -posting bottom up codelets -initial : relevance = 0, unhappiness=15 -target : relevance = 0, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = b from initial string -destination: a -chosen bond facet: letterCategory -Source: b, destination: a -source descriptor: B -destination descriptor: A -proposing predecessor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -to object: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:1] == ab from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -object chosen = c from initial string -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = j from target string -urgency: 23.200000000000003, number: 1, bin: 2 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = a from initial string -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -object chosen = c from initial string -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -object chosen = j from target string -destination: i -chosen bond facet: letterCategory -Source: j, destination: i -source descriptor: J -destination descriptor: I -proposing predecessor bond -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between j and k from other string -bond strength = 48 for successor bond between j and k -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -urgency: 23.200000000000003, number: 1, bin: 2 -object chosen = b from initial string -destination: c -chosen bond facet: letterCategory -Source: b, destination: c -source descriptor: B -destination descriptor: C -proposing successor bond -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -bond strength = 48 for successor bond between b and c -object chosen = k from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -object chosen = c from initial string -destination: b -chosen bond facet: letterCategory -Source: c, destination: b -source descriptor: C -destination descriptor: B -proposing predecessor bond -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = j from target string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = k from target string -object chosen = predecessor bond between i and j from other string -bond strength = 48 for predecessor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 48 for successor bond between i and j -succeeded: posting bond-builder -urgency: 100.0, number: 1, bin: 7 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = b from initial string -object chosen = predecessor bond between b and c from other string -bond strength = 48 for predecessor bond between b and c -object chosen = i from target string -destination: j -chosen bond facet: letterCategory -Source: i, destination: j -source descriptor: I -destination descriptor: J -proposing successor bond -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between i and j -object chosen = successor bond between b and c from other string -bond strength = 91 for successor bond between b and c -succeeded: posting bond-builder -object chosen = a from initial string -object chosen = i from target string -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between b and c from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between b and c -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -object chosen = i from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -urgency: 100.0, number: 1, bin: 7 -urgency: 100.0, number: 1, bin: 7 -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for direction -source chosen = b -no firstBond -firstBond2: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from b to c -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for direction -source chosen = j -no firstBond -firstBond2: successor bond between i and j -possible group: successor bond between i and j -trying from j to successor -proposing group from i to j -object chosen = group[0:1] == ij from target string -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -to object: b -urgency: 100.0, number: 1, bin: 7 -object chosen = successor bond between a and b from other string -bond strength = 94 for successor bond between a and b -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 50, unhappiness=89 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 3 objects, 1 bonds for bond -source: b, destination: c -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[1:2] == bc from initial string -object chosen = successor bond between a and b from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between a and b -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: i, destination: j -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -bond strength = 91 for successor bond between i and j -succeeded: posting bond-builder -object chosen = k from target string -destination: j -chosen bond facet: letterCategory -Source: k, destination: j -source descriptor: K -destination descriptor: J -proposing predecessor bond -urgency: 100.0, number: 1, bin: 7 -top_down_bond_scout__category -initial : relevance = 100, unhappiness=89 -target : relevance = 50, unhappiness=89 -target string selected: ijk with 3 letters, 3 objects, 1 bonds for bond -source: k, destination: j -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between j and k from other string -bond strength = 94 for successor bond between j and k -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == abc from initial string -no incompatible bonds -no incompatible Groups -building group -object chosen = predecessor bond between j and k from other string -bond strength = 48 for predecessor bond between j and k -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -initial : relevance = 100, unhappiness=78 -target : relevance = 50, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between j and k from other string -number of incompatibleBonds: 0 -no incompatible bonds -no incompatible groups -building bond successor bond between j and k -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=78 -target : relevance = 100, unhappiness=89 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-bond-scout--category, with urgency: 4 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = group[0:2] == ijk from target string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == ijk from target string -no incompatible bonds -no incompatible Groups -building group -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between j and k from other string -number of incompatibleBonds: 1 -successor bond between j and k -lost fight with successor bond between j and k -failed to break bonds: Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: i, destination: j -object chosen = successor bond between i and j from other string -bond strength = 96 for successor bond between i and j -succeeded: posting bond-builder -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -object chosen = k from target string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=78 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -Post top down: top-down-bond-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--direction, with urgency: 3 -Post top down: top-down-group-scout--category, with urgency: 4 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = c -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from c to successor -proposing group from a to c -urgency: 100.0, number: 1, bin: 7 -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for direction -source chosen = k -firstBond: successor bond between j and k -possible group: successor bond between j and k -trying from k to successor -proposing group from i to k -object chosen = group[0:2] == ijk from target string -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: c, destination: b -object chosen = successor bond between b and c from other string -bond strength = 96 for successor bond between b and c -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-description-scout, with urgency: 5 -posting bottom up codelets -object chosen = successor bond between b and c from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = j from target string -destination: k -chosen bond facet: letterCategory -Source: j, destination: k -source descriptor: J -destination descriptor: K -proposing successor bond -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = group[1:2] == bc from initial string -no incompatible bonds -lost fight with group[0:2] == abc -failed to break Groups: Fizzle -object chosen = a from initial string -destination: b -chosen bond facet: letterCategory -Source: a, destination: b -source descriptor: A -destination descriptor: B -proposing successor bond -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = a -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from a to successor -proposing group from a to c -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = group[0:2] == abc from initial string -Post top down: top-down-group-scout--direction, with urgency: 3 -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = group[0:2] == abc from initial string -object chosen = predecessor bond between i and j from other string -number of incompatibleBonds: 1 -successor bond between i and j -lost fight with successor bond between i and j -failed to break bonds: Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -to object: b -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -urgency: 100.0, number: 2, bin: 7 -object chosen = group[0:2] == abc from initial string -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between b and c -possible group: successor bond between b and c -trying from b to successor -proposing group from a to c -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -Post top down: top-down-bond-scout--category, with urgency: 4 -posting bottom up codelets -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == ijk from target string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -object chosen = group[0:2] == ijk from target string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -target string selected: ijk with 3 letters, 4 objects, 2 bonds for bond -source: j, destination: k -object chosen = successor bond between j and k from other string -bond strength = 96 for successor bond between j and k -succeeded: posting bond-builder -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: b, destination: a -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between j and k from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle -object chosen = successor bond between i and j from other string -already exists: activate descriptors & Fizzle -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for direction -source chosen = b -firstBond: successor bond between a and b -possible group: successor bond between a and b -trying from b to successor -proposing group from a to c -posting bottom up codelets -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for group -object chosen = group[0:2] == abc from initial string -object chosen = group[0:2] == abc from initial string -already exists...activate descriptors & fizzle -top_down_bond_scout__category -initial : relevance = 100, unhappiness=15 -target : relevance = 100, unhappiness=15 -initial string selected: abc with 3 letters, 4 objects, 2 bonds for bond -source: a, destination: b -object chosen = group[0:2] == abc from initial string -object chosen = successor bond between a and b from other string -bond strength = 96 for successor bond between a and b -succeeded: posting bond-builder -object chosen = successor bond between a and b from other string -already exists: activate descriptors & Fizzle From 60a527406623d6869b8605d672fc563dcf38ea78 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Fri, 29 Sep 2017 13:34:26 -0600 Subject: [PATCH 05/20] Adds additional plotting options --- .gitignore | 3 +++ copycat/plot.py | 8 +++++--- main.py | 3 ++- output/.placeholder | 0 4 files changed, 10 insertions(+), 4 deletions(-) create mode 100644 output/.placeholder diff --git a/.gitignore b/.gitignore index 2e1ebd5..ea7e94f 100644 --- a/.gitignore +++ b/.gitignore @@ -28,3 +28,6 @@ copycat.log # Editors .*.swp + +# Output +output/* diff --git a/copycat/plot.py b/copycat/plot.py index 8601359..bbacd12 100644 --- a/copycat/plot.py +++ b/copycat/plot.py @@ -3,7 +3,7 @@ import numpy as np import matplotlib.pyplot as plt -def plot_answers(answers): +def plot_answers(answers, show=True, save=True, filename='distribution.png'): answers = sorted(answers.items(), key=lambda kv : kv[1]['count']) objects = [t[0] + ' (temp:{})'.format(t[1]['avgtemp']) for t in answers] yvalues = [t[1]['count'] for t in answers] @@ -14,5 +14,7 @@ def plot_answers(answers): plt.xticks(y_pos, objects) plt.ylabel('Count') plt.title('Answers') - plt.show() - + if show: + plt.show() + if save: + plt.savefig('output/{}'.format(filename)) diff --git a/main.py b/main.py index d03d0f3..bae5ce0 100755 --- a/main.py +++ b/main.py @@ -56,6 +56,7 @@ def main(): parser.add_argument('--seed', type=int, default=None, help='Provide a deterministic seed for the RNG.') parser.add_argument('--iterations', type=int, default=1, help='Run the given case this many times.') parser.add_argument('--plot', action='store_true', help='Plot a bar graph of answer distribution') + parser.add_argument('--noshow', action='store_true', help='Don\'t display bar graph at end of run') parser.add_argument('initial', type=str, help='A...') parser.add_argument('modified', type=str, help='...is to B...') parser.add_argument('target', type=str, help='...as C is to... what?') @@ -68,7 +69,7 @@ def main(): print('%s: %d (avg time %.1f, avg temp %.1f)' % (answer, d['count'], d['avgtime'], d['avgtemp'])) if options.plot: - plot_answers(answers) + plot_answers(answers, show=not options.noshow) if __name__ == '__main__': main() diff --git a/output/.placeholder b/output/.placeholder new file mode 100644 index 0000000..e69de29 From 665bf1f7783aac16a106c760b43013714946823b Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Fri, 29 Sep 2017 13:47:03 -0600 Subject: [PATCH 06/20] Adds notes to temperature.py --- copycat/temperature.py | 61 ++++++++++----- temp_usages.txt | 168 ----------------------------------------- todos.txt | 53 ------------- 3 files changed, 42 insertions(+), 240 deletions(-) delete mode 100644 temp_usages.txt delete mode 100644 todos.txt diff --git a/copycat/temperature.py b/copycat/temperature.py index eb49cea..b294491 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -212,6 +212,44 @@ class Temperature(object): Need to play with this more... and WTF is f anyways? + + LSaldyt: + + Recall self.value(): + def value(self): + return 100.0 if self.clamped else self.actual_value + + f in terms of value() and value only + f = ((10 - sqrt(100 - self.value()))/100 + 1) * value + + For the original LISP program: + + ; This function is a filter: it inputs a value (from 0 to 100) and returns + ; a probability (from 0 - 1) based on that value and the temperature. When + ; the temperature is 0, the result is (/ value 100), but at higher + ; temperatures, values below 50 get raised and values above 50 get lowered + ; as a function of temperature. + ; I think this whole formula could probably be simplified. + + (setq result + (cond ((= prob 0) 0) + ((<= prob .5) + (setq low-prob-factor (max 1 (truncate (abs (log prob 10))))) + (min (+ prob + (* (/ (- 10 (sqrt (fake-reciprocal *temperature*))) + 100) + (- (expt 10 (- (1- low-prob-factor))) prob))) + .5)) + + ((= prob .5) .5) + ((> prob .5) + (max (- 1 + (+ (- 1 prob) + (* (/ (- 10 (sqrt (fake-reciprocal *temperature*))) + 100) + (- 1 (- 1 prob))))) + .5)))) + result) """ if value == 0 or value == 0.5 or self.value() == 0: return value @@ -221,22 +259,7 @@ class Temperature(object): a = math.sqrt(coldness) c = (10 - a) / 100 f = (c + 1) * value - return (0 + (-f * math.log2(f))) # max(f, 0.0000) - - def getAdjustedProbability(self, value): - # Recall self.value(): - # def value(self): - # return 100.0 if self.clamped else self.actual_value - # - # f in terms of value() and value only - # f = ((10 - sqrt(100 - self.value()))/100 + 1) * value - - if value == 0 or value == 0.5 or self.value() == 0: - return value - if value < 0.5: - return 1.0 - self.getAdjustedProbability(1.0 - value) - coldness = 100.0 - self.value() - a = math.sqrt(coldness) - c = (10 - a) / 100 - f = (c + 1) * value - return max(f, 0.5) + # return max(f, 0.5) + # return max(f, 0.0) + # return (0 + (-f * math.log2(f))) + return -f * math.log2(f) diff --git a/temp_usages.txt b/temp_usages.txt deleted file mode 100644 index efc6806..0000000 --- a/temp_usages.txt +++ /dev/null @@ -1,168 +0,0 @@ -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: weightedStrength1 = temperature.getAdjustedValue( -copycat/codeletMethods.py: weightedStrength2 = temperature.getAdjustedValue( -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: probabilityOfSlippage = temperature.getAdjustedProbability(slippiness) -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: probabilityOfFizzle = (100.0 - temperature.value()) / 100.0 -copycat/codeletMethods.py: breakProbability = temperature.getAdjustedProbability( -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(association) -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(strength / 100.0) -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: temperature.getAdjustedValue(node.conceptualDepth) -copycat/codeletMethods.py: temperature.getAdjustedValue(node.conceptualDepth) -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(rule.totalStrength / 100.0) -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(strength / 100.0) -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(strength / 100.0) -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: if cutoff >= temperature.actual_value: -copycat/codeletMethods.py: temperature.clampUntil(coderack.codeletsRun + 100) -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: weights = [temperature.getAdjustedValue(n.conceptualDepth) for n in descriptors] -copycat/codeletMethods.py: temperature = ctx.temperature -copycat/codeletMethods.py: probability = temperature.getAdjustedProbability(strength / 100.0) -copycat/coderack.py: temperature = self.ctx.temperature -copycat/coderack.py: return (temperature.value() / 100.0) ** 2 -copycat/coderack.py: temperature = self.ctx.temperature -copycat/coderack.py: if temperature.value() < 25.0 and 'translator' in codeletName: -copycat/coderack.py: temperature = self.ctx.temperature -copycat/coderack.py: scale = (100.0 - temperature.value() + 10.0) / 15.0 -copycat/copycat.py:from .temperature import Temperature -copycat/copycat.py: def report_temperature(self, temperature): -copycat/copycat.py: self.temperature = Temperature() -copycat/copycat.py: self.temperature.tryUnclamp(currentTime) -copycat/copycat.py: self.temperature.update(self.workspace.getUpdatedTemperature()) -copycat/copycat.py: self.reporter.report_temperature(self.temperature) -copycat/copycat.py: self.temperature.reset() -copycat/copycat.py: 'temp': self.temperature.last_unclamped_value, -copycat/copycat.py: 'sumtemp': 0, -copycat/copycat.py: d['sumtemp'] += answer['temp'] -copycat/copycat.py: d['avgtemp'] = d.pop('sumtemp') / d['count'] -copycat/curses_reporter.py: self.temperatureWindow = SafeSubwindow(window, height, 5, 0, 0) -copycat/curses_reporter.py: for w in [self.temperatureWindow, self.upperWindow, self.answersWindow, self.fpsWindow]: -copycat/curses_reporter.py: w = self.temperatureWindow # just a random window -copycat/curses_reporter.py: 'sumtemp': 0, -copycat/curses_reporter.py: d['sumtemp'] += answer['temp'] -copycat/curses_reporter.py: d['avgtemp'] = d['sumtemp'] / d['count'] -copycat/curses_reporter.py: return 3 * d['count'] - d['avgtemp'] -copycat/curses_reporter.py: return '%s: %d (avg time %.1f, avg temp %.1f)' % ( -copycat/curses_reporter.py: d['answer'], d['count'], d['avgtime'], d['avgtemp'], -copycat/curses_reporter.py: def report_temperature(self, temperature): -copycat/curses_reporter.py: w = self.temperatureWindow -copycat/curses_reporter.py: mercury = max_mercury * temperature.value() / 100.0 -copycat/curses_reporter.py: w.addnstr(height - 2, 1, '%3d' % temperature.actual_value, 3) -copycat/group.py: temperature = self.ctx.temperature -copycat/group.py: return temperature.getAdjustedProbability(supportedActivation) -copycat/group.py: temperature = self.ctx.temperature -copycat/group.py: value = temperature.getAdjustedProbability(probability) -copycat/temperature.py: iiijjjlll: 670 (avg time 1108.5, avg temp 23.6) -copycat/temperature.py: iiijjjd: 2 (avg time 1156.0, avg temp 35.0) -copycat/temperature.py: iiijjjkkl: 315 (avg time 1194.4, avg temp 35.5) -copycat/temperature.py: iiijjjkll: 8 (avg time 2096.8, avg temp 44.1) -copycat/temperature.py: iiijjjkkd: 5 (avg time 837.2, avg temp 48.0) -copycat/temperature.py: wyz: 5 (avg time 2275.2, avg temp 14.9) -copycat/temperature.py: xyd: 982 (avg time 2794.4, avg temp 17.5) -copycat/temperature.py: yyz: 7 (avg time 2731.9, avg temp 25.1) -copycat/temperature.py: dyz: 2 (avg time 3320.0, avg temp 27.1) -copycat/temperature.py: xyy: 2 (avg time 4084.5, avg temp 31.1) -copycat/temperature.py: xyz: 2 (avg time 1873.5, avg temp 52.1) -copycat/temperature.py: wyz: 7 (avg time 3192.9, avg temp 13.1) -copycat/temperature.py: xyd: 985 (avg time 2849.1, avg temp 17.5) -copycat/temperature.py: yyz: 6 (avg time 3836.7, avg temp 18.6) -copycat/temperature.py: xyy: 1 (avg time 1421.0, avg temp 19.5) -copycat/temperature.py: xyz: 1 (avg time 7350.0, avg temp 48.3) -copycat/temperature.py: wyz: 8 (avg time 4140.5, avg temp 13.3) -copycat/temperature.py: yyz: 6 (avg time 2905.2, avg temp 14.5) -copycat/temperature.py: xyd: 982 (avg time 3025.4, avg temp 17.6) -copycat/temperature.py: dyz: 4 (avg time 4265.0, avg temp 17.7) -copycat/temperature.py: dyz: 1 (avg time 5198.0, avg temp 15.3) -copycat/temperature.py: wyz: 3 (avg time 4043.7, avg temp 17.1) -copycat/temperature.py: yyz: 9 (avg time 3373.6, avg temp 21.0) -copycat/temperature.py: xyd: 84 (avg time 5011.1, avg temp 23.3) -copycat/temperature.py: xyy: 3 (avg time 4752.0, avg temp 27.9) -copycat/temperature.py: xyd: 1000 (avg time 1625.2, avg temp 17.3) -copycat/temperature.py: xyz: 3 (avg time 3996.7, avg temp 81.1) -copycat/temperature.py: dyz: 46 (avg time 5931.7, avg temp 82.6) -copycat/temperature.py: xd: 17 (avg time 6090.3, avg temp 83.8) -copycat/temperature.py: xyd: 934 (avg time 7699.8, avg temp 88.1) -copycat/temperature.py: wyz: 123 (avg time 5933.1, avg temp 16.5) -copycat/temperature.py: xyy: 200 (avg time 6486.7, avg temp 27.8) -copycat/temperature.py: yyz: 330 (avg time 6310.2, avg temp 38.5) -copycat/temperature.py: dyz: 75 (avg time 6393.3, avg temp 39.6) -copycat/temperature.py: yzz: 5 (avg time 4965.0, avg temp 59.3) -copycat/temperature.py: xyz: 160 (avg time 6886.2, avg temp 60.2) -copycat/temperature.py: xd: 4 (avg time 2841.0, avg temp 61.8) -copycat/temperature.py: dz: 3 (avg time 3721.0, avg temp 62.1) -copycat/temperature.py: xyd: 100 (avg time 5853.1, avg temp 67.5) -copycat/temperature.py: wyz: 78 (avg time 7793.7, avg temp 16.6) -copycat/temperature.py: xyy: 202 (avg time 9168.5, avg temp 27.5) -copycat/temperature.py: wxz: 1 (avg time 3154.0, avg temp 33.4) -copycat/temperature.py: dyz: 63 (avg time 7950.3, avg temp 41.7) -copycat/temperature.py: yyz: 217 (avg time 8147.4, avg temp 41.7) -copycat/temperature.py: xyz: 201 (avg time 7579.7, avg temp 62.5) -copycat/temperature.py: xxy: 1 (avg time 7994.0, avg temp 64.8) -copycat/temperature.py: yzz: 8 (avg time 4672.6, avg temp 65.7) -copycat/temperature.py: xd: 9 (avg time 9215.2, avg temp 68.1) -copycat/temperature.py: xyd: 217 (avg time 7677.9, avg temp 73.8) -copycat/temperature.py: dz: 3 (avg time 20379.0, avg temp 77.3) -copycat/temperature.py: xyd: 100 (avg time 2984.3, avg temp 18.2) -copycat/temperature.py: jijjkk: 66 (avg time 3200.1, avg temp 61.3) -copycat/temperature.py: iijjkk: 114 (avg time 5017.2, avg temp 63.5) -copycat/temperature.py: dijjkk: 23 (avg time 2209.0, avg temp 67.3) -copycat/temperature.py: iijjkl: 748 (avg time 3262.8, avg temp 70.0) -copycat/temperature.py: iijjkd: 49 (avg time 2315.9, avg temp 76.3) -copycat/temperature.py: iijjll: 59 (avg time 797.4, avg temp 19.8) -copycat/temperature.py: iijjkl: 41 (avg time 696.1, avg temp 28.5) -copycat/temperature.py: mrrlll: 77 (avg time 2195.7, avg temp 41.4) -copycat/temperature.py: mrrd: 2 (avg time 1698.0, avg temp 42.6) -copycat/temperature.py: mrrkkl: 20 (avg time 1317.8, avg temp 46.6) -copycat/temperature.py: mrrkkd: 1 (avg time 1835.0, avg temp 48.6) -copycat/temperature.py: nrrkkk: 11 (avg time 3637.8, avg temp 64.6) -copycat/temperature.py: drrkkk: 3 (avg time 5921.3, avg temp 66.2) -copycat/temperature.py: mrrkkd: 7 (avg time 6771.3, avg temp 74.6) -copycat/temperature.py: mrrkkl: 79 (avg time 3723.0, avg temp 74.9) -copycat/tests.py:def lower_bound_on_probability(hits, attempts, confidence=0.95): -copycat/tests.py: if attempts == 0: -copycat/tests.py: phat = 1.0 * hits / attempts -copycat/tests.py: under_sqrt = (phat * (1 - phat) + zsqr / (4 * attempts)) / attempts -copycat/tests.py: denominator = (1 + zsqr / attempts) -copycat/tests.py: return (phat + zsqr / (2 * attempts) - z * (under_sqrt ** 0.5)) / denominator -copycat/tests.py:def upper_bound_on_probability(hits, attempts, confidence=0.95): -copycat/tests.py: misses = attempts - hits -copycat/tests.py: return 1.0 - lower_bound_on_probability(misses, attempts, confidence) -copycat/tests.py: if abs(actual[k]['avgtemp'] - expected[k]['avgtemp']) >= 10.0 + (10.0 / actual[k]['count']): -copycat/tests.py: print('Failed (%s - %s >= %s)' % (actual[k]['avgtemp'], expected[k]['avgtemp'], 10.0 + (10.0 / actual[k]['count']))) -copycat/tests.py: 'efd': {'count': 1, 'avgtemp': 16}, -copycat/tests.py: 'efh': {'count': 99, 'avgtemp': 19}, -copycat/tests.py: 'ijd': {'count': 4, 'avgtemp': 24}, -copycat/tests.py: 'ijl': {'count': 96, 'avgtemp': 20}, -copycat/tests.py: 'xyd': {'count': 100, 'avgtemp': 19}, -copycat/tests.py: 'ijkkk': {'count': 7, 'avgtemp': 21}, -copycat/tests.py: 'ijll': {'count': 47, 'avgtemp': 28}, -copycat/tests.py: 'ijkl': {'count': 44, 'avgtemp': 32}, -copycat/tests.py: 'ijkd': {'count': 2, 'avgtemp': 65}, -copycat/tests.py: 'mrrjjjj': {'count': 4, 'avgtemp': 16}, -copycat/tests.py: 'mrrkkk': {'count': 31, 'avgtemp': 47}, -copycat/tests.py: 'mrrjjk': {'count': 64, 'avgtemp': 51}, -copycat/tests.py: 'mrrjkk': {'count': 1, 'avgtemp': 52}, -copycat/tests.py: 'mrrjjd': {'count': 1, 'avgtemp': 54}, -copycat/tests.py: 'milj': {'count': 85, 'avgtemp': 55}, -copycat/tests.py: 'mikj': {'count': 10, 'avgtemp': 56}, -copycat/tests.py: 'milk': {'count': 1, 'avgtemp': 56}, -copycat/tests.py: 'lilk': {'count': 1, 'avgtemp': 57}, -copycat/tests.py: 'milb': {'count': 3, 'avgtemp': 57}, -copycat/tests.py: 'xc': {'count': 9, 'avgtemp': 57}, -copycat/tests.py: 'xyc': {'count': 82, 'avgtemp': 59}, -copycat/tests.py: 'cyx': {'count': 7, 'avgtemp': 68}, -copycat/tests.py: 'xyx': {'count': 2, 'avgtemp': 69}, -copycat/tests.py: 'cakg': {'count': 99, 'avgtemp': 70}, -copycat/tests.py: 'gake': {'count': 1, 'avgtemp': 59}, -copycat/tests.py: 'kitteg': {'count': 96, 'avgtemp': 66}, -copycat/tests.py: 'kitten': {'count': 4, 'avgtemp': 68}, -copycat/workspaceFormulas.py: temperature = ctx.temperature -copycat/workspaceFormulas.py: temperature.getAdjustedValue( diff --git a/todos.txt b/todos.txt deleted file mode 100644 index 5775650..0000000 --- a/todos.txt +++ /dev/null @@ -1,53 +0,0 @@ -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO:use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/codeletMethods.py: # TODO: use entropy -copycat/coderack.py: # TODO: use entropy -copycat/coderack.py: # TODO: use entropy -copycat/coderack.py: # TODO: use entropy -copycat/coderack.py: # TODO: use entropy -copycat/coderack.py: # TODO: use entropy -copycat/coderack.py: # TODO: use entropy -copycat/copycat.py: def report_temperature(self, temperature): #TODO: use entropy -copycat/copycat.py: self.temperature = Temperature() # TODO: use entropy -copycat/copycat.py: self.temperature.tryUnclamp(currentTime) # TODO: use entropy -copycat/copycat.py: self.temperature.update(self.workspace.getUpdatedTemperature()) # TODO: use entropy -copycat/copycat.py: self.temperature.reset() # TODO: use entropy -copycat/copycat.py: 'temp': self.temperature.last_unclamped_value, # TODO: use entropy -copycat/copycat.py: 'sumtemp': 0, # TODO: use entropy -copycat/copycat.py: d['sumtemp'] += answer['temp'] # TODO: use entropy -copycat/curses_reporter.py: self.temperatureWindow = SafeSubwindow(window, height, 5, 0, 0) # TODO: use entropy (entropyWindow) -copycat/curses_reporter.py: #TODO: use entropy -copycat/group.py: #TODO: use entropy -copycat/group.py: #TODO: use entropy -copycat/temperature.py: # TODO: use entropy -copycat/tests.py:# TODO: update test cases to use entropy -copycat/workspaceFormulas.py: # TODO: use entropy -copycat/workspaceObject.py: from .group import Group # gross, TODO FIXME -copycat/workspace.py: # TODO: Initial part of refactoring in this method -copycat/workspace.py: # TODO: Extract method? -copycat/workspace.py: # TODO: these 3 methods seem to be the same... are they? If so, Extract method. -copycat/workspace.py: # TODO: use entropy From fa8b4939484299e84cb70490dcf73c804c07c773 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Fri, 29 Sep 2017 15:01:57 -0600 Subject: [PATCH 07/20] Adds annotations and formula notes --- copycat/temperature.py | 94 +++++++++++++++++++++++++++++++----------- 1 file changed, 69 insertions(+), 25 deletions(-) diff --git a/copycat/temperature.py b/copycat/temperature.py index b294491..34ac871 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -223,34 +223,78 @@ class Temperature(object): f = ((10 - sqrt(100 - self.value()))/100 + 1) * value For the original LISP program: + ; This function is a filter: it inputs a value (from 0 to 100) and returns + ; a probability (from 0 - 1) based on that value and the temperature. + ********************************************************* + ; When the temperature is 0, the result is (/ value 100), but at higher + ; temperatures, values below 50 get raised and values above 50 get lowered + ; as a function of temperature. + ********************************************************** + ; I think this whole formula could probably be simplified. + ********************************************************** - ; This function is a filter: it inputs a value (from 0 to 100) and returns - ; a probability (from 0 - 1) based on that value and the temperature. When - ; the temperature is 0, the result is (/ value 100), but at higher - ; temperatures, values below 50 get raised and values above 50 get lowered - ; as a function of temperature. - ; I think this whole formula could probably be simplified. - - (setq result - (cond ((= prob 0) 0) - ((<= prob .5) - (setq low-prob-factor (max 1 (truncate (abs (log prob 10))))) - (min (+ prob - (* (/ (- 10 (sqrt (fake-reciprocal *temperature*))) - 100) - (- (expt 10 (- (1- low-prob-factor))) prob))) - .5)) - - ((= prob .5) .5) - ((> prob .5) - (max (- 1 - (+ (- 1 prob) + (defun get-temperature-adjusted-probability (prob &aux low-prob-factor + result) + (setq result + (cond ((= prob 0) 0) + ((<= prob .5) + (setq low-prob-factor (max 1 (truncate (abs (log prob 10))))) + (min (+ prob (* (/ (- 10 (sqrt (fake-reciprocal *temperature*))) - 100) - (- 1 (- 1 prob))))) - .5)))) - result) + 100) + (- (expt 10 (- (1- low-prob-factor))) prob))) + .5)) + + ((= prob .5) .5) + ((> prob .5) + (max (- 1 + (+ (- 1 prob) + (* (/ (- 10 (sqrt (fake-reciprocal *temperature*))) + 100) + (- 1 (- 1 prob))))) + .5)))) + result) + + Which was tested using: + + (defun test-get-temperature-adjusted-probability (prob) + (with-open-file (ostream "testfile" :direction :output + :if-does-not-exist :create + :if-exists :append) + (format ostream "prob: ~a~&" prob) + (loop for temp in '(0 10 20 30 40 50 60 70 80 90 100) do + (setq *temperature* temp) + (format ostream "Temperature: ~a; probability ~a~&" + temp (float (get-temperature-adjusted-probability prob)))) + (format ostream "~%"))) + + Interpretation: + + Importantly, the values of .5 in both the min and max correspond to the mid-cutoff of 50: + i.e. 'values below 50 get raised and values above 50 get lowered' + Still, it is interesting to note that changing 'return max(f, 0.0) to max(f, 0.5) has no significant effect on the distribution + + It looks like the function below preserves most of the functionality of the original lisp. + However, the comments themselves agree that the formula is overly complicated. + + prob = value # Slightly more descriptive (and less ambiguous), will change argument + # Temperature, potentially clamped + temp = self.value() + # A scaling factor (between 0 and infinity), based on temperature (i.e. 100/coldness) + if temp == 100: # Avoid dividing by zero + factor = float('inf') + else: + factor = 100 / (100 - temp) + + if prob == .5: + return .5 + elif prob > .5: + prob = prob / factor + elif prob < .5: + prob = prob * factor + return max(min(prob, 0), 1) # Normalize between 0 and 1. TODO: make scaling factor more reasonable """ + if value == 0 or value == 0.5 or self.value() == 0: return value if value < 0.5: From 6b1c4634fe1da85722476dca539ad5e42841e5a3 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Fri, 29 Sep 2017 16:59:26 -0600 Subject: [PATCH 08/20] Fixes plot labels (slightly) --- copycat/plot.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/copycat/plot.py b/copycat/plot.py index bbacd12..772d0f1 100644 --- a/copycat/plot.py +++ b/copycat/plot.py @@ -5,7 +5,7 @@ import matplotlib.pyplot as plt def plot_answers(answers, show=True, save=True, filename='distribution.png'): answers = sorted(answers.items(), key=lambda kv : kv[1]['count']) - objects = [t[0] + ' (temp:{})'.format(t[1]['avgtemp']) for t in answers] + objects = [t[0] + ' (temp:{})'.format(round(t[1]['avgtemp'], 2)) for t in answers] yvalues = [t[1]['count'] for t in answers] y_pos = np.arange(len(objects)) From 430e2b3750b73563c501d71ff9f11ebd6494cfdc Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Fri, 29 Sep 2017 17:55:24 -0600 Subject: [PATCH 09/20] Adds base temp formula --- copycat/temperature.py | 81 +++++++++++++++++++++++++++++++++++++++--- 1 file changed, 76 insertions(+), 5 deletions(-) diff --git a/copycat/temperature.py b/copycat/temperature.py index 34ac871..485b9cb 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -221,6 +221,10 @@ class Temperature(object): f in terms of value() and value only f = ((10 - sqrt(100 - self.value()))/100 + 1) * value + so, the function: (10 - sqrt(100 - temp)) / 100 + produces a scalar from the current temperature, + ranging from 1.0 when the temp is 0 to 1.1 when the temp is 100. + This is used to scale probablities in their inverse directions For the original LISP program: ; This function is a filter: it inputs a value (from 0 to 100) and returns @@ -277,23 +281,89 @@ class Temperature(object): It looks like the function below preserves most of the functionality of the original lisp. However, the comments themselves agree that the formula is overly complicated. + """ prob = value # Slightly more descriptive (and less ambiguous), will change argument # Temperature, potentially clamped - temp = self.value() + temp = self.value() + iprob = 1 - prob + + + # This function does precisely what I think the original lisp comment describes, but provides crappy results + # return (temp / 200) * iprob + ((200 - temp) / 200) * prob + # However, this version preforms much better: + # Some statistical analysis is needed of course + return (temp / 100) * iprob + ((100 - temp) / 100) * prob + ''' + lucas@infinity:~/projects/personal/copycat$ ./main.py abc abd xyz --iterations 10 --plot + Answered wyz (time 3865, final temperature 13.9) + Answered wyz (time 8462, final temperature 10.8) + Answered wyz (time 6062, final temperature 11.7) + Answered yyz (time 4022, final temperature 15.6) + Answered yyz (time 2349, final temperature 59.8) + Answered xyd (time 17977, final temperature 14.9) + Answered xyd (time 1550, final temperature 14.7) + Answered xyd (time 11755, final temperature 16.8) + Answered wyz (time 2251, final temperature 13.7) + Answered yyz (time 13007, final temperature 11.7) + wyz: 4 (avg time 5160.0, avg temp 12.5) + xyd: 3 (avg time 10427.3, avg temp 15.5) + yyz: 3 (avg time 6459.3, avg temp 29.0) + + However, it generally does worse on abc:abd::ijjkk:_ + + lucas@infinity:~/projects/personal/copycat$ ./main.py abc abd ijjkkk --iterations 10 --plot + Answered ijjlll (time 7127, final temperature 17.6) + Answered ijjlll (time 968, final temperature 17.5) + Answered ijjkkl (time 1471, final temperature 19.8) + Answered ijjlll (time 1058, final temperature 13.2) + Answered ijjkkl (time 489, final temperature 83.9) + Answered ijjkkl (time 1576, final temperature 18.7) + Answered ijjkkl (time 1143, final temperature 65.2) + Answered ijjkkl (time 3067, final temperature 19.6) + Answered ijjkkl (time 1973, final temperature 40.4) + Answered ijjkkl (time 1064, final temperature 50.6) + ijjlll: 3 (avg time 3051.0, avg temp 16.1) + ijjkkl: 7 (avg time 1540.4, avg temp 42.6) + ''' + # unparameterized version + #curvedProb = (temp / 100) * iprob + (cold / 100) * prob + + #if prob < .5: + # # Curving small (<.5) probabilities to .5, but not over + # return max(curvedProb, .5) + #else: + # # Curving large (>.5) probabilities to .5, but not under + # return min(curvedProb, .5) + + # parameterized version : weights towards or away from probabilities + # alpha = 1.0 + # beta = 1.0 + # return ((alpha + temp / 100) * iprob + (beta + cold / 100) * prob) / (alpha + beta) + + ''' # A scaling factor (between 0 and infinity), based on temperature (i.e. 100/coldness) if temp == 100: # Avoid dividing by zero factor = float('inf') else: - factor = 100 / (100 - temp) - + # My factor: + # factor = 100 / (100 - temp) + # SQRT: + # factor = math.sqrt(100 / (100 - temp)) + # Original factor: + # factor = (110 - math.sqrt(100 - temp)) / 100 + # Factor ^ 10: + # factor = ((110 - math.sqrt(100 - temp)) / 100) ** 10. + # Factor ^ 20 + # factor = ((110 - math.sqrt(100 - temp)) / 100) ** 20. + # No factor: + # factor = 1 if prob == .5: return .5 elif prob > .5: prob = prob / factor elif prob < .5: prob = prob * factor - return max(min(prob, 0), 1) # Normalize between 0 and 1. TODO: make scaling factor more reasonable - """ + return min(max(prob, 0), 1) # Normalize between 0 and 1. if value == 0 or value == 0.5 or self.value() == 0: return value @@ -307,3 +377,4 @@ class Temperature(object): # return max(f, 0.0) # return (0 + (-f * math.log2(f))) return -f * math.log2(f) + ''' From 7abb40f849db3fa96f32ab2b44c59414e4c6ef30 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Wed, 4 Oct 2017 15:20:48 -0600 Subject: [PATCH 10/20] Adds problems and result saving --- copycat/__init__.py | 1 + copycat/io.py | 9 +++++++++ input/.placeholder | 0 input/problems.csv | 9 +++++++++ input/reduced_problems.csv | 4 ++++ main.py | 5 +++-- 6 files changed, 26 insertions(+), 2 deletions(-) create mode 100644 copycat/io.py create mode 100644 input/.placeholder create mode 100644 input/problems.csv create mode 100644 input/reduced_problems.csv diff --git a/copycat/__init__.py b/copycat/__init__.py index 14c0cc1..4e8bc55 100644 --- a/copycat/__init__.py +++ b/copycat/__init__.py @@ -1,2 +1,3 @@ from .copycat import Copycat, Reporter # noqa from .plot import plot_answers +from .io import save_answers diff --git a/copycat/io.py b/copycat/io.py new file mode 100644 index 0000000..ae1185b --- /dev/null +++ b/copycat/io.py @@ -0,0 +1,9 @@ + +def save_answers(answers, filename): + answers = sorted(answers.items(), key=lambda kv : kv[1]['count']) + keys = [k for k, v in answers] + counts = [str(v['count']) for k, v in answers] + with open(filename, 'w') as outfile: + outfile.write(','.join(keys)) + outfile.write('\n') + outfile.write(','.join(counts)) diff --git a/input/.placeholder b/input/.placeholder new file mode 100644 index 0000000..e69de29 diff --git a/input/problems.csv b/input/problems.csv new file mode 100644 index 0000000..3e941fa --- /dev/null +++ b/input/problems.csv @@ -0,0 +1,9 @@ +abc,abd,ijk +aabc,aabd,ijkk +abc,abd,kji +abc,abd,mrrjjj +abc,abd,rssttt +abc,abd,xyz +abc,abd,ijjkkk +rst,rsu,xyz +abc,abd,xyyzzz diff --git a/input/reduced_problems.csv b/input/reduced_problems.csv new file mode 100644 index 0000000..f5fe027 --- /dev/null +++ b/input/reduced_problems.csv @@ -0,0 +1,4 @@ +abc,abd,ijk +aabc,aabd,ijkk +abc,abd,xyz +abc,abd,ijjkkk diff --git a/main.py b/main.py index bae5ce0..3f197ee 100755 --- a/main.py +++ b/main.py @@ -35,8 +35,7 @@ final temperature of the workspace; lower means "more elegant". import argparse import logging -from copycat import Copycat, Reporter, plot_answers - +from copycat import Copycat, Reporter, plot_answers, save_answers class SimpleReporter(Reporter): """Reports results from a single run.""" @@ -70,6 +69,8 @@ def main(): if options.plot: plot_answers(answers, show=not options.noshow) + save_answers(answers, 'output/answers.csv') + if __name__ == '__main__': main() From b90bae25847220088a0af9b2b5bfd742ddaa22dd Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Wed, 4 Oct 2017 15:20:59 -0600 Subject: [PATCH 11/20] Adds automatic running, formula tests --- copycat/copycat.py | 45 ++++++++++++++++---------- copycat/temperature.py | 73 +++++++++++++++++++++++++++++++++++++++--- multi-run.py | 33 +++++++++++++++++++ 3 files changed, 129 insertions(+), 22 deletions(-) create mode 100755 multi-run.py diff --git a/copycat/copycat.py b/copycat/copycat.py index 8602fc7..64adbef 100644 --- a/copycat/copycat.py +++ b/copycat/copycat.py @@ -4,7 +4,6 @@ from .slipnet import Slipnet from .temperature import Temperature from .workspace import Workspace - class Reporter(object): """Do-nothing base class for defining new reporter types""" def report_answer(self, answer): @@ -66,24 +65,36 @@ class Copycat(object): self.reporter.report_answer(answer) return answer - def run(self, initial, modified, target, iterations): + def run(self, initial, modified, target, iterations, testAdjFormulas=False): self.workspace.resetWithStrings(initial, modified, target) - answers = {} - for i in range(iterations): - answer = self.runTrial() - d = answers.setdefault(answer['answer'], { - 'count': 0, - 'sumtemp': 0, # TODO: use entropy - 'sumtime': 0 - }) - d['count'] += 1 - d['sumtemp'] += answer['temp'] # TODO: use entropy - d['sumtime'] += answer['time'] + if testAdjFormulas: + formulas = self.temperature.adj_formulas() + else: + formulas = ['original'] - for answer, d in answers.items(): - d['avgtemp'] = d.pop('sumtemp') / d['count'] - d['avgtime'] = d.pop('sumtime') / d['count'] - return answers + formulaList = [] + for formula in formulas: + self.temperature.useAdj(formula) + answers = {} + for i in range(iterations): + answer = self.runTrial() + d = answers.setdefault(answer['answer'], { + 'count': 0, + 'sumtemp': 0, # TODO: use entropy + 'sumtime': 0 + }) + d['count'] += 1 + d['sumtemp'] += answer['temp'] # TODO: use entropy + d['sumtime'] += answer['time'] + + for answer, d in answers.items(): + d['avgtemp'] = d.pop('sumtemp') / d['count'] + d['avgtime'] = d.pop('sumtime') / d['count'] + formulaList.append(answers) + if not testAdjFormulas: + return formulaList[0] + else: + return formulaList def run_forever(self, initial, modified, target): self.workspace.resetWithStrings(initial, modified, target) diff --git a/copycat/temperature.py b/copycat/temperature.py index 485b9cb..8538a3e 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -1,8 +1,44 @@ import math +# Alternate formulas for getAdjustedProbability + +def _original(temp, prob): + if prob == 0 or prob == 0.5 or temp == 0: + return prob + if prob < 0.5: + return 1.0 - _original(temp, 1.0 - prob) + coldness = 100.0 - temp + a = math.sqrt(coldness) + c = (10 - a) / 100 + f = (c + 1) * prob + return max(f, 0.5) + +def _entropy(temp, prob): + if prob == 0 or prob == 0.5 or temp == 0: + return prob + if prob < 0.5: + return 1.0 - _original(temp, 1.0 - prob) + coldness = 100.0 - temp + a = math.sqrt(coldness) + c = (10 - a) / 100 + f = (c + 1) * prob + return -f * math.log2(f) + +def _inverse_prob(temp, prob): + # Temperature, potentially clamped + iprob = 1 - prob + return (temp / 100) * iprob + ((100 - temp) / 100) * prob + + class Temperature(object): def __init__(self): self.reset() + self.adjustmentType = 'original' + self._adjustmentFormulas = { + 'original' : _original, + 'entropy' : _entropy, + 'inverse' : _inverse_prob + } def reset(self): self.actual_value = 100.0 @@ -32,7 +68,19 @@ class Temperature(object): def getAdjustedValue(self, value): return value ** (((100.0 - self.value()) / 30.0) + 0.5) - """ + def getAdjustedProbability(self, value): + temp = self.value() + prob = value + return self._adjustmentFormulas[self.adjustmentType](temp, prob) + + def useAdj(self, adj): + print('Changing to adjustment formula {}'.format(adj)) + self.adjustmentType = adj + + def adj_formulas(self): + return self._adjustmentFormulas.keys() + + ''' def getAdjustedProbability(self, value): if value == 0 or value == 0.5 or self.value() == 0: return value @@ -43,9 +91,20 @@ class Temperature(object): c = (10 - a) / 100 f = (c + 1) * value return max(f, 0.5) - """ def getAdjustedProbability(self, value): + if value == 0 or value == 0.5 or self.value() == 0: + return value + if value < 0.5: + return 1.0 - self.getAdjustedProbability(1.0 - value) + coldness = 100.0 - self.value() + a = math.sqrt(coldness) + c = (10 - a) / 100 + f = (c + 1) * value + # return max(f, 0.5) + # return max(f, 0.0) + # return (0 + (-f * math.log2(f))) + return -f * math.log2(f) # TODO: use entropy """ @@ -291,9 +350,13 @@ class Temperature(object): # This function does precisely what I think the original lisp comment describes, but provides crappy results # return (temp / 200) * iprob + ((200 - temp) / 200) * prob # However, this version preforms much better: + # Essentially, it weights probabilities towards their inverses when temperature is higher, and leaves them unaffected when it is lower. # Some statistical analysis is needed of course return (temp / 100) * iprob + ((100 - temp) / 100) * prob - ''' + + # This will give only xyd answers: + #return 1 - (temp / 100) * iprob + ((100 - temp) / 100) * prob + """ lucas@infinity:~/projects/personal/copycat$ ./main.py abc abd xyz --iterations 10 --plot Answered wyz (time 3865, final temperature 13.9) Answered wyz (time 8462, final temperature 10.8) @@ -324,7 +387,7 @@ class Temperature(object): Answered ijjkkl (time 1064, final temperature 50.6) ijjlll: 3 (avg time 3051.0, avg temp 16.1) ijjkkl: 7 (avg time 1540.4, avg temp 42.6) - ''' + """ # unparameterized version #curvedProb = (temp / 100) * iprob + (cold / 100) * prob @@ -340,7 +403,7 @@ class Temperature(object): # beta = 1.0 # return ((alpha + temp / 100) * iprob + (beta + cold / 100) * prob) / (alpha + beta) - ''' + """ # A scaling factor (between 0 and infinity), based on temperature (i.e. 100/coldness) if temp == 100: # Avoid dividing by zero factor = float('inf') diff --git a/multi-run.py b/multi-run.py new file mode 100755 index 0000000..fc3cbfc --- /dev/null +++ b/multi-run.py @@ -0,0 +1,33 @@ +#!/usr/bin/env python3 +import argparse, logging +from copycat import Copycat, Reporter, plot_answers, save_answers + +class SimpleReporter(Reporter): + """Reports results from a single run.""" + def report_answer(self, answer): + """Self-explanatory code.""" + print('Answered %s (time %d, final temperature %.1f)' % ( + answer['answer'], answer['time'], answer['temp'], + )) + +def main(): + parser = argparse.ArgumentParser() + parser.add_argument('--iterations', type=int, default=1, help='Run the given case this many times.') + options = parser.parse_args() + + copycat = Copycat(reporter=SimpleReporter()) + + with open('input/reduced_problems.csv', 'r') as infile: + for line in infile: + line = line.replace('\n', '') + a, b, c = line.split(',') + answerList = copycat.run(a, b, c, options.iterations, True) + for answers in answerList: + for answer, d in sorted(iter(answers.items()), key=lambda kv: kv[1]['avgtemp']): + print('%s: %d (avg time %.1f, avg temp %.1f)' % (answer, d['count'], d['avgtime'], d['avgtemp'])) + + #filename = 'output/{}-{}-{}.csv'.format(a, b, c) + #save_answers(answers, filename) + +if __name__ == '__main__': + main() From 8203cebb1579bccbd7160d047da9b852fcd38db9 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Wed, 4 Oct 2017 15:37:22 -0600 Subject: [PATCH 12/20] Calculate Chi^2 values for getAdj- formulas --- copycat/copycat.py | 8 ++++++-- multi-run.py | 28 +++++++++++++++++++++++++--- 2 files changed, 31 insertions(+), 5 deletions(-) diff --git a/copycat/copycat.py b/copycat/copycat.py index 64adbef..e5f41e1 100644 --- a/copycat/copycat.py +++ b/copycat/copycat.py @@ -67,6 +67,10 @@ class Copycat(object): def run(self, initial, modified, target, iterations, testAdjFormulas=False): self.workspace.resetWithStrings(initial, modified, target) + + # I (LSaldyt) am very sorry for writing code like this. + # It will soon be deleted. I promise. + if testAdjFormulas: formulas = self.temperature.adj_formulas() else: @@ -90,9 +94,9 @@ class Copycat(object): for answer, d in answers.items(): d['avgtemp'] = d.pop('sumtemp') / d['count'] d['avgtime'] = d.pop('sumtime') / d['count'] - formulaList.append(answers) + formulaList.append((formula, answers)) if not testAdjFormulas: - return formulaList[0] + return formulaList[0][1] else: return formulaList diff --git a/multi-run.py b/multi-run.py index fc3cbfc..a5b58c6 100755 --- a/multi-run.py +++ b/multi-run.py @@ -1,6 +1,7 @@ #!/usr/bin/env python3 import argparse, logging from copycat import Copycat, Reporter, plot_answers, save_answers +from collections import defaultdict class SimpleReporter(Reporter): """Reports results from a single run.""" @@ -22,9 +23,30 @@ def main(): line = line.replace('\n', '') a, b, c = line.split(',') answerList = copycat.run(a, b, c, options.iterations, True) - for answers in answerList: - for answer, d in sorted(iter(answers.items()), key=lambda kv: kv[1]['avgtemp']): - print('%s: %d (avg time %.1f, avg temp %.1f)' % (answer, d['count'], d['avgtime'], d['avgtemp'])) + results = dict() + for formula, answers in answerList: + answers = sorted(answers.items(), key=lambda kv : kv[1]['count']) + keys = [k for k, v in answers] + counts = [v['count'] for k, v in answers] + results[formula] = (keys, counts) + + originalCounts = defaultdict(lambda : 0) + originalCounts.update(dict(zip(*results['original']))) + + for formula, (keys, counts) in results.items(): + if formula != 'original': + chi2 = 0 + for answer, count in zip(keys, counts): + originalCount = originalCounts[answer] + if originalCount != 0: + chi2 += (count + originalCount) ** 2 / originalCount + print((formula, chi2)) + + + + #for answer, d in sorted(iter(answers.items()), key=lambda kv: kv[1]['avgtemp']): + #print('%s: %d (avg time %.1f, avg temp %.1f)' % (answer, d['count'], d['avgtime'], d['avgtemp'])) + #filename = 'output/{}-{}-{}.csv'.format(a, b, c) #save_answers(answers, filename) From c2c5d24f0da5462ec2d5d2a8121129fc78966e5f Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Thu, 5 Oct 2017 15:03:58 -0600 Subject: [PATCH 13/20] TAG: Formula testing code --- copycat/copycat.py | 6 ++---- copycat/temperature.py | 3 +-- multi-run.py | 5 +---- 3 files changed, 4 insertions(+), 10 deletions(-) diff --git a/copycat/copycat.py b/copycat/copycat.py index e5f41e1..c14f1eb 100644 --- a/copycat/copycat.py +++ b/copycat/copycat.py @@ -68,13 +68,11 @@ class Copycat(object): def run(self, initial, modified, target, iterations, testAdjFormulas=False): self.workspace.resetWithStrings(initial, modified, target) - # I (LSaldyt) am very sorry for writing code like this. - # It will soon be deleted. I promise. - if testAdjFormulas: formulas = self.temperature.adj_formulas() else: - formulas = ['original'] + formulas = ['inverse'] + #formulas = ['entropy'] formulaList = [] for formula in formulas: diff --git a/copycat/temperature.py b/copycat/temperature.py index 8538a3e..ea352dd 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -1,7 +1,6 @@ import math # Alternate formulas for getAdjustedProbability - def _original(temp, prob): if prob == 0 or prob == 0.5 or temp == 0: return prob @@ -33,7 +32,7 @@ def _inverse_prob(temp, prob): class Temperature(object): def __init__(self): self.reset() - self.adjustmentType = 'original' + self.adjustmentType = 'inverse' self._adjustmentFormulas = { 'original' : _original, 'entropy' : _entropy, diff --git a/multi-run.py b/multi-run.py index a5b58c6..88b1b16 100755 --- a/multi-run.py +++ b/multi-run.py @@ -40,14 +40,11 @@ def main(): originalCount = originalCounts[answer] if originalCount != 0: chi2 += (count + originalCount) ** 2 / originalCount - print((formula, chi2)) - - + print('Chi^2 value for {}:{}'.format(formula, chi2)) #for answer, d in sorted(iter(answers.items()), key=lambda kv: kv[1]['avgtemp']): #print('%s: %d (avg time %.1f, avg temp %.1f)' % (answer, d['count'], d['avgtime'], d['avgtemp'])) - #filename = 'output/{}-{}-{}.csv'.format(a, b, c) #save_answers(answers, filename) From 96c7c6e08c6b92ca293135e133fb8b36de77e1d2 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Thu, 5 Oct 2017 15:17:39 -0600 Subject: [PATCH 14/20] Cleans code, moving formula choice to copycat.py --- copycat/copycat.py | 50 +++--- copycat/temperature.py | 371 +---------------------------------------- multi-run.py | 52 ------ 3 files changed, 29 insertions(+), 444 deletions(-) delete mode 100755 multi-run.py diff --git a/copycat/copycat.py b/copycat/copycat.py index c14f1eb..3d0cf01 100644 --- a/copycat/copycat.py +++ b/copycat/copycat.py @@ -65,38 +65,30 @@ class Copycat(object): self.reporter.report_answer(answer) return answer - def run(self, initial, modified, target, iterations, testAdjFormulas=False): + def run(self, initial, modified, target, iterations): self.workspace.resetWithStrings(initial, modified, target) - if testAdjFormulas: - formulas = self.temperature.adj_formulas() - else: - formulas = ['inverse'] - #formulas = ['entropy'] + #self.temperature.useAdj('original') + #self.temperature.useAdj('entropy') + self.temperature.useAdj('inverse') # 100 weight + #self.temperature.useAdj('150-weight') + #self.temperature.useAdj('200-weight') + answers = {} + for i in range(iterations): + answer = self.runTrial() + d = answers.setdefault(answer['answer'], { + 'count': 0, + 'sumtemp': 0, # TODO: use entropy + 'sumtime': 0 + }) + d['count'] += 1 + d['sumtemp'] += answer['temp'] # TODO: use entropy + d['sumtime'] += answer['time'] - formulaList = [] - for formula in formulas: - self.temperature.useAdj(formula) - answers = {} - for i in range(iterations): - answer = self.runTrial() - d = answers.setdefault(answer['answer'], { - 'count': 0, - 'sumtemp': 0, # TODO: use entropy - 'sumtime': 0 - }) - d['count'] += 1 - d['sumtemp'] += answer['temp'] # TODO: use entropy - d['sumtime'] += answer['time'] - - for answer, d in answers.items(): - d['avgtemp'] = d.pop('sumtemp') / d['count'] - d['avgtime'] = d.pop('sumtime') / d['count'] - formulaList.append((formula, answers)) - if not testAdjFormulas: - return formulaList[0][1] - else: - return formulaList + for answer, d in answers.items(): + d['avgtemp'] = d.pop('sumtemp') / d['count'] + d['avgtime'] = d.pop('sumtime') / d['count'] + return answers def run_forever(self, initial, modified, target): self.workspace.resetWithStrings(initial, modified, target) diff --git a/copycat/temperature.py b/copycat/temperature.py index ea352dd..075a032 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -28,6 +28,11 @@ def _inverse_prob(temp, prob): iprob = 1 - prob return (temp / 100) * iprob + ((100 - temp) / 100) * prob +def _create_weighted_inverse_prob(weight): + def _inner_weighted_prob(temp, prob): + iprob = 1 - prob + return (temp / weight) * iprob + ((weight - temp) / weight) * prob + return _inner_weighted_prob class Temperature(object): def __init__(self): @@ -36,7 +41,9 @@ class Temperature(object): self._adjustmentFormulas = { 'original' : _original, 'entropy' : _entropy, - 'inverse' : _inverse_prob + 'inverse' : _inverse_prob, + '200-weight' : _create_weighted_inverse_prob(200), + '150-weight' : _create_weighted_inverse_prob(150) } def reset(self): @@ -78,365 +85,3 @@ class Temperature(object): def adj_formulas(self): return self._adjustmentFormulas.keys() - - ''' - def getAdjustedProbability(self, value): - if value == 0 or value == 0.5 or self.value() == 0: - return value - if value < 0.5: - return 1.0 - self.getAdjustedProbability(1.0 - value) - coldness = 100.0 - self.value() - a = math.sqrt(coldness) - c = (10 - a) / 100 - f = (c + 1) * value - return max(f, 0.5) - - def getAdjustedProbability(self, value): - if value == 0 or value == 0.5 or self.value() == 0: - return value - if value < 0.5: - return 1.0 - self.getAdjustedProbability(1.0 - value) - coldness = 100.0 - self.value() - a = math.sqrt(coldness) - c = (10 - a) / 100 - f = (c + 1) * value - # return max(f, 0.5) - # return max(f, 0.0) - # return (0 + (-f * math.log2(f))) - return -f * math.log2(f) - # TODO: use entropy - - """ - This function returns the probability for a decision. - Copied above. - - Please look at the last line of it. Strangely, it was - return max(f, 0.5). Does that make sense? Let's compare - some results. Where it was (0.5), we obtained, for example: - - iiijjjlll: 670 (avg time 1108.5, avg temp 23.6) - iiijjjd: 2 (avg time 1156.0, avg temp 35.0) - iiijjjkkl: 315 (avg time 1194.4, avg temp 35.5) - iiijjjkll: 8 (avg time 2096.8, avg temp 44.1) - iiijjjkkd: 5 (avg time 837.2, avg temp 48.0) - - wyz: 5 (avg time 2275.2, avg temp 14.9) - xyd: 982 (avg time 2794.4, avg temp 17.5) - yyz: 7 (avg time 2731.9, avg temp 25.1) - dyz: 2 (avg time 3320.0, avg temp 27.1) - xyy: 2 (avg time 4084.5, avg temp 31.1) - xyz: 2 (avg time 1873.5, avg temp 52.1) - - Now, let's see what return max(f, 0.0000) does: - - wyz: 7 (avg time 3192.9, avg temp 13.1) - xyd: 985 (avg time 2849.1, avg temp 17.5) - yyz: 6 (avg time 3836.7, avg temp 18.6) - xyy: 1 (avg time 1421.0, avg temp 19.5) - xyz: 1 (avg time 7350.0, avg temp 48.3) - - They *seem* better (in the strict sense that we've obtained both - lower T and more times of wyz.) But they're *not* statistically - significant (for 1000 runs). - - Now... looking at the code... it seems to be a mess... what does - function f() even mean in intuitive terms? - - Work it does, but dude... quite a hack. - - Another run, with return f @line89: - - wyz: 8 (avg time 4140.5, avg temp 13.3) - yyz: 6 (avg time 2905.2, avg temp 14.5) - xyd: 982 (avg time 3025.4, avg temp 17.6) - dyz: 4 (avg time 4265.0, avg temp 17.7) - - Does it even matter? Another (quick) run, I think with return (0.5): - - dyz: 1 (avg time 5198.0, avg temp 15.3) - wyz: 3 (avg time 4043.7, avg temp 17.1) - yyz: 9 (avg time 3373.6, avg temp 21.0) - xyd: 84 (avg time 5011.1, avg temp 23.3) - xyy: 3 (avg time 4752.0, avg temp 27.9) - - Compared to return(0.99): - - xyd: 1000 (avg time 1625.2, avg temp 17.3) - - Comparing to return f --> Statistically significant. - Comparing to return(0.5) --> same, so this return value does something. - - Now running return(0.0): - - xyz: 3 (avg time 3996.7, avg temp 81.1) - dyz: 46 (avg time 5931.7, avg temp 82.6) - xd: 17 (avg time 6090.3, avg temp 83.8) - xyd: 934 (avg time 7699.8, avg temp 88.1) - - It's bad overall, but at least it's statistically significant! - - return (-f * (math.log2(f))) # Entropy test #1 (global). - - wyz: 123 (avg time 5933.1, avg temp 16.5) - xyy: 200 (avg time 6486.7, avg temp 27.8) - yyz: 330 (avg time 6310.2, avg temp 38.5) - dyz: 75 (avg time 6393.3, avg temp 39.6) - yzz: 5 (avg time 4965.0, avg temp 59.3) - xyz: 160 (avg time 6886.2, avg temp 60.2) - xd: 4 (avg time 2841.0, avg temp 61.8) - dz: 3 (avg time 3721.0, avg temp 62.1) - xyd: 100 (avg time 5853.1, avg temp 67.5) - - Here we get an intuitive result: entropy/uncertainty seems better at - exploring a whole range of possible solutions. It even seems, at least - to me, better than the distribution obtained by the original copycat. - - instead of log2, trying ln --> return (-f * math.log(f)): - - wyz: 78 (avg time 7793.7, avg temp 16.6) - xyy: 202 (avg time 9168.5, avg temp 27.5) - wxz: 1 (avg time 3154.0, avg temp 33.4) - dyz: 63 (avg time 7950.3, avg temp 41.7) - yyz: 217 (avg time 8147.4, avg temp 41.7) - xyz: 201 (avg time 7579.7, avg temp 62.5) - xxy: 1 (avg time 7994.0, avg temp 64.8) - yzz: 8 (avg time 4672.6, avg temp 65.7) - xd: 9 (avg time 9215.2, avg temp 68.1) - xyd: 217 (avg time 7677.9, avg temp 73.8) - dz: 3 (avg time 20379.0, avg temp 77.3) - - (quickly) trying out (1-this_entropy_function): - - xyd: 100 (avg time 2984.3, avg temp 18.2) - - And that's beautiful! One wants an inverse function that punishes - exploration and creativity, that takes all the fluidity off - the system. - - But somehow this completely messes up with abc abd iijjkk: - - jijjkk: 66 (avg time 3200.1, avg temp 61.3) - iijjkk: 114 (avg time 5017.2, avg temp 63.5) - dijjkk: 23 (avg time 2209.0, avg temp 67.3) - iijjkl: 748 (avg time 3262.8, avg temp 70.0) - iijjkd: 49 (avg time 2315.9, avg temp 76.3) - - Which leads me to suspect that someone may have overfitted the - model for either xyz or iijjkk or some other problem, and one - improvement there means disaster here. - - Something tells me to invert again to 1-entropy... and bingo! - - iijjll: 59 (avg time 797.4, avg temp 19.8) - iijjkl: 41 (avg time 696.1, avg temp 28.5) - - My guess is that some code is prefering to find groups in the - opposite form that it likes finding the "symmetry/opposite" - concepts of the xyz problem. - - Sould compare & contrast the unhappiness and relevance of both - the opposite/symmetry codelets and the grouping/chunking codelets. - My hunch is the sameness group code: something there that - interacts with Temperature is wicked, and should be relatively - easy to find the error. - - Here's why: the following run was done on (1-entropy(f)): - - mrrlll: 77 (avg time 2195.7, avg temp 41.4) - mrrd: 2 (avg time 1698.0, avg temp 42.6) - mrrkkl: 20 (avg time 1317.8, avg temp 46.6) - mrrkkd: 1 (avg time 1835.0, avg temp 48.6) - - - If (1-entropy(f)) binds the system into a tight corridor of possibilities, - then why does it easily get the samenessGroup right? If this is right, - then running just entropy(f) should have big trouble with samenessGroup. - Let's see: - - nrrkkk: 11 (avg time 3637.8, avg temp 64.6) - drrkkk: 3 (avg time 5921.3, avg temp 66.2) - mrrkkd: 7 (avg time 6771.3, avg temp 74.6) - mrrkkl: 79 (avg time 3723.0, avg temp 74.9) - - So there we are: the system is unable to find that change samenessGroup - to next letterCategory, so there ought to be something very different - in the code that: - - * Interacts with Temperature (things like unhappiness, relevance, depth, - urgency, and whatever else interacts with T) - * something very close to samenessGroup... sameGroup, sameness, - sameNeighbors, etc... is encoded in a form that is *directly opposite* - to other concepts/categories/codlets, etc. - - - Need to play with this more... and WTF is f anyways? - - LSaldyt: - - Recall self.value(): - def value(self): - return 100.0 if self.clamped else self.actual_value - - f in terms of value() and value only - f = ((10 - sqrt(100 - self.value()))/100 + 1) * value - so, the function: (10 - sqrt(100 - temp)) / 100 - produces a scalar from the current temperature, - ranging from 1.0 when the temp is 0 to 1.1 when the temp is 100. - This is used to scale probablities in their inverse directions - - For the original LISP program: - ; This function is a filter: it inputs a value (from 0 to 100) and returns - ; a probability (from 0 - 1) based on that value and the temperature. - ********************************************************* - ; When the temperature is 0, the result is (/ value 100), but at higher - ; temperatures, values below 50 get raised and values above 50 get lowered - ; as a function of temperature. - ********************************************************** - ; I think this whole formula could probably be simplified. - ********************************************************** - - (defun get-temperature-adjusted-probability (prob &aux low-prob-factor - result) - (setq result - (cond ((= prob 0) 0) - ((<= prob .5) - (setq low-prob-factor (max 1 (truncate (abs (log prob 10))))) - (min (+ prob - (* (/ (- 10 (sqrt (fake-reciprocal *temperature*))) - 100) - (- (expt 10 (- (1- low-prob-factor))) prob))) - .5)) - - ((= prob .5) .5) - ((> prob .5) - (max (- 1 - (+ (- 1 prob) - (* (/ (- 10 (sqrt (fake-reciprocal *temperature*))) - 100) - (- 1 (- 1 prob))))) - .5)))) - result) - - Which was tested using: - - (defun test-get-temperature-adjusted-probability (prob) - (with-open-file (ostream "testfile" :direction :output - :if-does-not-exist :create - :if-exists :append) - (format ostream "prob: ~a~&" prob) - (loop for temp in '(0 10 20 30 40 50 60 70 80 90 100) do - (setq *temperature* temp) - (format ostream "Temperature: ~a; probability ~a~&" - temp (float (get-temperature-adjusted-probability prob)))) - (format ostream "~%"))) - - Interpretation: - - Importantly, the values of .5 in both the min and max correspond to the mid-cutoff of 50: - i.e. 'values below 50 get raised and values above 50 get lowered' - Still, it is interesting to note that changing 'return max(f, 0.0) to max(f, 0.5) has no significant effect on the distribution - - It looks like the function below preserves most of the functionality of the original lisp. - However, the comments themselves agree that the formula is overly complicated. - - """ - prob = value # Slightly more descriptive (and less ambiguous), will change argument - # Temperature, potentially clamped - temp = self.value() - iprob = 1 - prob - - - # This function does precisely what I think the original lisp comment describes, but provides crappy results - # return (temp / 200) * iprob + ((200 - temp) / 200) * prob - # However, this version preforms much better: - # Essentially, it weights probabilities towards their inverses when temperature is higher, and leaves them unaffected when it is lower. - # Some statistical analysis is needed of course - return (temp / 100) * iprob + ((100 - temp) / 100) * prob - - # This will give only xyd answers: - #return 1 - (temp / 100) * iprob + ((100 - temp) / 100) * prob - """ - lucas@infinity:~/projects/personal/copycat$ ./main.py abc abd xyz --iterations 10 --plot - Answered wyz (time 3865, final temperature 13.9) - Answered wyz (time 8462, final temperature 10.8) - Answered wyz (time 6062, final temperature 11.7) - Answered yyz (time 4022, final temperature 15.6) - Answered yyz (time 2349, final temperature 59.8) - Answered xyd (time 17977, final temperature 14.9) - Answered xyd (time 1550, final temperature 14.7) - Answered xyd (time 11755, final temperature 16.8) - Answered wyz (time 2251, final temperature 13.7) - Answered yyz (time 13007, final temperature 11.7) - wyz: 4 (avg time 5160.0, avg temp 12.5) - xyd: 3 (avg time 10427.3, avg temp 15.5) - yyz: 3 (avg time 6459.3, avg temp 29.0) - - However, it generally does worse on abc:abd::ijjkk:_ - - lucas@infinity:~/projects/personal/copycat$ ./main.py abc abd ijjkkk --iterations 10 --plot - Answered ijjlll (time 7127, final temperature 17.6) - Answered ijjlll (time 968, final temperature 17.5) - Answered ijjkkl (time 1471, final temperature 19.8) - Answered ijjlll (time 1058, final temperature 13.2) - Answered ijjkkl (time 489, final temperature 83.9) - Answered ijjkkl (time 1576, final temperature 18.7) - Answered ijjkkl (time 1143, final temperature 65.2) - Answered ijjkkl (time 3067, final temperature 19.6) - Answered ijjkkl (time 1973, final temperature 40.4) - Answered ijjkkl (time 1064, final temperature 50.6) - ijjlll: 3 (avg time 3051.0, avg temp 16.1) - ijjkkl: 7 (avg time 1540.4, avg temp 42.6) - """ - # unparameterized version - #curvedProb = (temp / 100) * iprob + (cold / 100) * prob - - #if prob < .5: - # # Curving small (<.5) probabilities to .5, but not over - # return max(curvedProb, .5) - #else: - # # Curving large (>.5) probabilities to .5, but not under - # return min(curvedProb, .5) - - # parameterized version : weights towards or away from probabilities - # alpha = 1.0 - # beta = 1.0 - # return ((alpha + temp / 100) * iprob + (beta + cold / 100) * prob) / (alpha + beta) - - """ - # A scaling factor (between 0 and infinity), based on temperature (i.e. 100/coldness) - if temp == 100: # Avoid dividing by zero - factor = float('inf') - else: - # My factor: - # factor = 100 / (100 - temp) - # SQRT: - # factor = math.sqrt(100 / (100 - temp)) - # Original factor: - # factor = (110 - math.sqrt(100 - temp)) / 100 - # Factor ^ 10: - # factor = ((110 - math.sqrt(100 - temp)) / 100) ** 10. - # Factor ^ 20 - # factor = ((110 - math.sqrt(100 - temp)) / 100) ** 20. - # No factor: - # factor = 1 - if prob == .5: - return .5 - elif prob > .5: - prob = prob / factor - elif prob < .5: - prob = prob * factor - return min(max(prob, 0), 1) # Normalize between 0 and 1. - - if value == 0 or value == 0.5 or self.value() == 0: - return value - if value < 0.5: - return 1.0 - self.getAdjustedProbability(1.0 - value) - coldness = 100.0 - self.value() - a = math.sqrt(coldness) - c = (10 - a) / 100 - f = (c + 1) * value - # return max(f, 0.5) - # return max(f, 0.0) - # return (0 + (-f * math.log2(f))) - return -f * math.log2(f) - ''' diff --git a/multi-run.py b/multi-run.py deleted file mode 100755 index 88b1b16..0000000 --- a/multi-run.py +++ /dev/null @@ -1,52 +0,0 @@ -#!/usr/bin/env python3 -import argparse, logging -from copycat import Copycat, Reporter, plot_answers, save_answers -from collections import defaultdict - -class SimpleReporter(Reporter): - """Reports results from a single run.""" - def report_answer(self, answer): - """Self-explanatory code.""" - print('Answered %s (time %d, final temperature %.1f)' % ( - answer['answer'], answer['time'], answer['temp'], - )) - -def main(): - parser = argparse.ArgumentParser() - parser.add_argument('--iterations', type=int, default=1, help='Run the given case this many times.') - options = parser.parse_args() - - copycat = Copycat(reporter=SimpleReporter()) - - with open('input/reduced_problems.csv', 'r') as infile: - for line in infile: - line = line.replace('\n', '') - a, b, c = line.split(',') - answerList = copycat.run(a, b, c, options.iterations, True) - results = dict() - for formula, answers in answerList: - answers = sorted(answers.items(), key=lambda kv : kv[1]['count']) - keys = [k for k, v in answers] - counts = [v['count'] for k, v in answers] - results[formula] = (keys, counts) - - originalCounts = defaultdict(lambda : 0) - originalCounts.update(dict(zip(*results['original']))) - - for formula, (keys, counts) in results.items(): - if formula != 'original': - chi2 = 0 - for answer, count in zip(keys, counts): - originalCount = originalCounts[answer] - if originalCount != 0: - chi2 += (count + originalCount) ** 2 / originalCount - print('Chi^2 value for {}:{}'.format(formula, chi2)) - - #for answer, d in sorted(iter(answers.items()), key=lambda kv: kv[1]['avgtemp']): - #print('%s: %d (avg time %.1f, avg temp %.1f)' % (answer, d['count'], d['avgtime'], d['avgtemp'])) - - #filename = 'output/{}-{}-{}.csv'.format(a, b, c) - #save_answers(answers, filename) - -if __name__ == '__main__': - main() From 874683bf1895e38bfc99cae2f5b97c2ed80ac86f Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Sat, 7 Oct 2017 23:38:48 -0600 Subject: [PATCH 15/20] Adds clarification to breaker codelet docs --- copycat/codeletMethods.py | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/copycat/codeletMethods.py b/copycat/codeletMethods.py index 46e2ebf..a497410 100644 --- a/copycat/codeletMethods.py +++ b/copycat/codeletMethods.py @@ -112,11 +112,9 @@ def __fightIncompatibles(incompatibles, structure, name, def __slippability(ctx, conceptMappings): random = ctx.random - # TODO: use entropy temperature = ctx.temperature for mapping in conceptMappings: slippiness = mapping.slippability() / 100.0 - # TODO: use entropy probabilityOfSlippage = temperature.getAdjustedProbability(slippiness) if random.coinFlip(probabilityOfSlippage): return True @@ -125,11 +123,18 @@ def __slippability(ctx, conceptMappings): @codelet('breaker') def breaker(ctx, codelet): + # From the original LISP: + ''' + First decides probabilistically whether or not to fizzle, based on + temperature. Chooses a structure and random and decides probabilistically + whether or not to break it as a function of its total weakness. + + If the structure is a bond in a group, have to break the group in + order to break the bond. + ''' random = ctx.random - # TODO: use entropy temperature = ctx.temperature workspace = ctx.workspace - # TODO: use entropy probabilityOfFizzle = (100.0 - temperature.value()) / 100.0 if random.coinFlip(probabilityOfFizzle): return @@ -145,8 +150,9 @@ def breaker(ctx, codelet): if structure.source.group == structure.destination.group: breakObjects += [structure.source.group] # Break all the objects or none of them; this matches the Java + # "all objects" means a bond and its group, if it has one. + for structure in breakObjects: - # TODO: use entropy breakProbability = temperature.getAdjustedProbability( structure.totalStrength / 100.0) if random.coinFlip(breakProbability): From 3bf417e38ac35af8c2f3e6ec0b836731d28005a2 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Mon, 9 Oct 2017 11:06:16 -0600 Subject: [PATCH 16/20] WIP --- copycat/codeletMethods.py | 1 + copycat/copycat.py | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/copycat/codeletMethods.py b/copycat/codeletMethods.py index a497410..d563eec 100644 --- a/copycat/codeletMethods.py +++ b/copycat/codeletMethods.py @@ -155,6 +155,7 @@ def breaker(ctx, codelet): for structure in breakObjects: breakProbability = temperature.getAdjustedProbability( structure.totalStrength / 100.0) + #breakProbability = structure.totalStrength / 100.0 if random.coinFlip(breakProbability): return for structure in breakObjects: diff --git a/copycat/copycat.py b/copycat/copycat.py index 3d0cf01..4957292 100644 --- a/copycat/copycat.py +++ b/copycat/copycat.py @@ -68,9 +68,9 @@ class Copycat(object): def run(self, initial, modified, target, iterations): self.workspace.resetWithStrings(initial, modified, target) - #self.temperature.useAdj('original') + self.temperature.useAdj('original') #self.temperature.useAdj('entropy') - self.temperature.useAdj('inverse') # 100 weight + #self.temperature.useAdj('inverse') # 100 weight #self.temperature.useAdj('150-weight') #self.temperature.useAdj('200-weight') answers = {} From 27a55668bee076c741222d615c74c08b638acfd6 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Mon, 9 Oct 2017 12:20:33 -0600 Subject: [PATCH 17/20] Experiments with alt inverse: Equal probabilities for all items when temperature is equal to 100 --- copycat/codeletMethods.py | 1 - copycat/copycat.py | 7 +++---- copycat/temperature.py | 20 +++++++++----------- 3 files changed, 12 insertions(+), 16 deletions(-) diff --git a/copycat/codeletMethods.py b/copycat/codeletMethods.py index d563eec..a497410 100644 --- a/copycat/codeletMethods.py +++ b/copycat/codeletMethods.py @@ -155,7 +155,6 @@ def breaker(ctx, codelet): for structure in breakObjects: breakProbability = temperature.getAdjustedProbability( structure.totalStrength / 100.0) - #breakProbability = structure.totalStrength / 100.0 if random.coinFlip(breakProbability): return for structure in breakObjects: diff --git a/copycat/copycat.py b/copycat/copycat.py index 4957292..a9a4a1e 100644 --- a/copycat/copycat.py +++ b/copycat/copycat.py @@ -68,11 +68,10 @@ class Copycat(object): def run(self, initial, modified, target, iterations): self.workspace.resetWithStrings(initial, modified, target) - self.temperature.useAdj('original') + #self.temperature.useAdj('original') #self.temperature.useAdj('entropy') - #self.temperature.useAdj('inverse') # 100 weight - #self.temperature.useAdj('150-weight') - #self.temperature.useAdj('200-weight') + self.temperature.useAdj('inverse') # 100 weight + #self.temperature.useAdj('alt_inverse') # 100 weight, equal probs at 100 answers = {} for i in range(iterations): answer = self.runTrial() diff --git a/copycat/temperature.py b/copycat/temperature.py index 075a032..be2f32f 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -24,26 +24,24 @@ def _entropy(temp, prob): return -f * math.log2(f) def _inverse_prob(temp, prob): - # Temperature, potentially clamped iprob = 1 - prob return (temp / 100) * iprob + ((100 - temp) / 100) * prob -def _create_weighted_inverse_prob(weight): - def _inner_weighted_prob(temp, prob): - iprob = 1 - prob - return (temp / weight) * iprob + ((weight - temp) / weight) * prob - return _inner_weighted_prob +def _alt_inverse_prob(temp, prob): + if temp == 100: + return .5 + iprob = 1 - prob + return (temp / 100) * iprob + ((100 - temp) / 100) * prob class Temperature(object): def __init__(self): self.reset() self.adjustmentType = 'inverse' self._adjustmentFormulas = { - 'original' : _original, - 'entropy' : _entropy, - 'inverse' : _inverse_prob, - '200-weight' : _create_weighted_inverse_prob(200), - '150-weight' : _create_weighted_inverse_prob(150) + 'original' : _original, + 'entropy' : _entropy, + 'inverse' : _inverse_prob, + 'alt_inverse' : _alt_inverse_prob } def reset(self): From 73d07212860a440eed1fed724a6cfa02c33fc240 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Mon, 9 Oct 2017 12:53:54 -0600 Subject: [PATCH 18/20] Moves log location --- .gitignore | 1 - copycat/copycat.py | 1 - copycat/temperature.py | 10 +--------- main.py | 2 +- 4 files changed, 2 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index ea7e94f..c6ecab7 100644 --- a/.gitignore +++ b/.gitignore @@ -20,7 +20,6 @@ pip-log.txt .coverage .tox .log -copycat.log # Other filesystems .svn diff --git a/copycat/copycat.py b/copycat/copycat.py index a9a4a1e..2adff4a 100644 --- a/copycat/copycat.py +++ b/copycat/copycat.py @@ -71,7 +71,6 @@ class Copycat(object): #self.temperature.useAdj('original') #self.temperature.useAdj('entropy') self.temperature.useAdj('inverse') # 100 weight - #self.temperature.useAdj('alt_inverse') # 100 weight, equal probs at 100 answers = {} for i in range(iterations): answer = self.runTrial() diff --git a/copycat/temperature.py b/copycat/temperature.py index be2f32f..5457c97 100644 --- a/copycat/temperature.py +++ b/copycat/temperature.py @@ -27,12 +27,6 @@ def _inverse_prob(temp, prob): iprob = 1 - prob return (temp / 100) * iprob + ((100 - temp) / 100) * prob -def _alt_inverse_prob(temp, prob): - if temp == 100: - return .5 - iprob = 1 - prob - return (temp / 100) * iprob + ((100 - temp) / 100) * prob - class Temperature(object): def __init__(self): self.reset() @@ -40,9 +34,7 @@ class Temperature(object): self._adjustmentFormulas = { 'original' : _original, 'entropy' : _entropy, - 'inverse' : _inverse_prob, - 'alt_inverse' : _alt_inverse_prob - } + 'inverse' : _inverse_prob} def reset(self): self.actual_value = 100.0 diff --git a/main.py b/main.py index 3f197ee..23b1033 100755 --- a/main.py +++ b/main.py @@ -49,7 +49,7 @@ class SimpleReporter(Reporter): def main(): """Program's main entrance point. Self-explanatory code.""" - logging.basicConfig(level=logging.INFO, format='%(message)s', filename='./copycat.log', filemode='w') + logging.basicConfig(level=logging.INFO, format='%(message)s', filename='./output/copycat.log', filemode='w') parser = argparse.ArgumentParser() parser.add_argument('--seed', type=int, default=None, help='Provide a deterministic seed for the RNG.') From be06e22f6433d43468d0a8a814b031a9e1adbd66 Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Mon, 9 Oct 2017 13:01:11 -0600 Subject: [PATCH 19/20] Moves tests --- copycat/tests.py => tests.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) rename copycat/tests.py => tests.py (99%) diff --git a/copycat/tests.py b/tests.py similarity index 99% rename from copycat/tests.py rename to tests.py index 522206a..c607867 100644 --- a/copycat/tests.py +++ b/tests.py @@ -1,6 +1,5 @@ import unittest - -from .copycat import Copycat +from copycat import Copycat # TODO: update test cases to use entropy From f3e1c875dee1cf030247de45294d685306131fdb Mon Sep 17 00:00:00 2001 From: LSaldyt Date: Mon, 9 Oct 2017 13:01:18 -0600 Subject: [PATCH 20/20] Adds travis testing skeleton --- .travis.yml | 5 +++++ tests.py | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..5bb996d --- /dev/null +++ b/.travis.yml @@ -0,0 +1,5 @@ +language: python +python: + - "3.6" +script: + - python3 tests.py diff --git a/tests.py b/tests.py index c607867..eccbafd 100644 --- a/tests.py +++ b/tests.py @@ -1,4 +1,6 @@ import unittest +from pprint import pprint + from copycat import Copycat # TODO: update test cases to use entropy @@ -67,6 +69,7 @@ class TestCopycat(unittest.TestCase): self.fail('No instances of expected key %s were produced! %r != %r' % (k, actual, expected)) def run_testcase(self, initial, modified, target, iterations, expected): + pprint(expected) actual = Copycat().run(initial, modified, target, iterations) self.assertEqual(sum(a['count'] for a in list(actual.values())), iterations) self.assertProbabilitiesLookRoughlyLike(actual, expected)