From f6152f3a2bfc15e1bb4e2fbd004bfc96f13f0342 Mon Sep 17 00:00:00 2001 From: ocrampal Date: Thu, 25 Jun 2026 19:01:59 +0200 Subject: [PATCH] Update presynapse.md --- elements/neuron/presynapse.md | 120 ++++++---------------------------- 1 file changed, 20 insertions(+), 100 deletions(-) diff --git a/elements/neuron/presynapse.md b/elements/neuron/presynapse.md index 744a14c..0e915d8 100644 --- a/elements/neuron/presynapse.md +++ b/elements/neuron/presynapse.md @@ -266,7 +266,7 @@ ADJUST // Increase: *VcggIncrease - void: INCLUDE [ accumulator: VcggIncrease, event: 10x, cost: 3x, context: NOT *VcggIncrease ] { + void: INSTANTIATE [ accumulator: VcggIncrease, event: 10x, cost: 3x, context: NOT *VcggIncrease ] { hypothesis: action: trace: @@ -274,7 +274,7 @@ ADJUST // decrease: *VcggDecrease - void: INCLUDE [ accumulator: VcggDecrease, event: 10x, cost: 3x, context: NOT *VcggDecrease ] { + void: INSTANTIATE [ accumulator: VcggDecrease, event: 10x, cost: 3x, context: NOT *VcggDecrease ] { hypothesis: action: trace: @@ -290,127 +290,47 @@ DEVELOP type: container - activity_scope: !NIGHT - - // snippet: *fixed - @: INCLUDE [ contextor: Ca2Check, event: act 60x ] - - // snippet: *CaFullDecrease - @: INCLUDE [ accumulator: CaFullDecrease, event: act 12x, cost: act 3x ] - - // snippet: *Ca2FullIncrease - @: INCLUDE [ accumulator: Ca2FullIncrease, event: act 12x, cost: act 3x ] - - @: INCLUDE [ contextor: RrpCheck, event: act 60x ] - - // snippet: *RrpFullDecrease - @: INCLUDE [ accumulator: RrpFullDecrease, event: act 12x, cost: act 3x ] - - // snippet: *IncreaseRrpFull - @: INCLUDE [ accumulator: IncreaseRrpFull, event: act 12x, cost: act 3x ] - -``` - -#### *fixed - -##### Ca2Check - -***Tens Milliseconds Time Scale*** - -```Gen -Ca2Check - - type: contextor - - in_context: *fixed + // CaFull, *fixed + void: INSTANTIATE [ contextor: Ca2Check, event: 60x, context: *fixed ] { condition: ( empty ) out_context: *CaFullDecrease condition: ( full) out_context: *Ca2FullIncrease -``` - -##### *CaFullDecrease - -###### CaFullDecrease - -```Gen -DecreasePreCa2Full - - type: accumulator - - in_context: *CaFullDecrease + } + // snippet: *CaFullDecrease + void: INSTANTIATE [ accumulator: CaFullDecrease, event: 12x, cost: 3x, context: NOT *CaFullDecrease ] { hypothesis: NOT ( full ) AND NOT ( empty ) action: [ increase, decrease] trace: None -``` - -##### *Ca2FullIncrease - -###### Ca2FullIncrease - -```Gen -IncreasePreCa2Full - - type: accumulator + } - in_context: *Ca2FullIncrease - - hypothesis: NOT ( full ) AND NOT ( empty ) - action: [ increase, decrease] - trace: None -``` - -#### *fixed - -##### RrpCheck - -***Tens Milliseconds Time Scale*** - -```Gen -RrpCheck - - type: contextor - - in_context: *fixed - + // snippet: *Ca2FullIncrease + void: INSTANTIATE [ accumulator: Ca2FullIncrease, event: 12x, cost: 3x, context: NOT *Ca2FullIncrease ] { condition: ( empty ) out_context: *RrpFullDecrease condition: ( full) out_context: *IncreaseRrpFull -``` + } -##### *RrpFullDecrease - -###### RrpFullDecrease - -```Gen -DecreasePreRrpFull - - type: accumulator - - in_context: *RrpFullDecrease + // RRPFull: *fixed + void: INSTANTIATE [ contextor: RrpCheck, event: 60x, context: *fixed ] + // snippet: *RrpFullDecrease + void: INSTANTIATE [ accumulator: RrpFullDecrease, event: 12x, cost: 3x, context: NOT *RrpFullDecrease ] { hypothesis: NOT ( full ) AND NOT ( empty ) action: [ increase, decrease] trace: None -``` - -##### *RrpFullIncrease - -###### RrpFullIncrease - -```Gen -RrpFullIncrease - - type: accumulator - - in_context: *RrpFullIncrease + } + // snippet: *IncreaseRrpFull + void: INSTANTIATE [ accumulator: IncreaseRrpFull, event: 12x, cost: 3x, context: NOT *RrpFullIncrease ] { hypothesis: NOT ( full ) AND NOT ( empty ) action: [ increase, decrease] trace: None + } + ```