Update presynapse.md

This commit is contained in:
2026-06-25 19:01:59 +02:00
parent 4298d2cd8d
commit f6152f3a2b
+20 -100
View File
@@ -266,7 +266,7 @@ ADJUST
// Increase: *VcggIncrease // 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: hypothesis:
action: action:
trace: trace:
@@ -274,7 +274,7 @@ ADJUST
// decrease: *VcggDecrease // 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: hypothesis:
action: action:
trace: trace:
@@ -290,127 +290,47 @@ DEVELOP
type: container type: container
activity_scope: !NIGHT // CaFull, *fixed
// 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
void: INSTANTIATE [ contextor: Ca2Check, event: 60x, context: *fixed ] {
condition: ( empty ) condition: ( empty )
out_context: *CaFullDecrease out_context: *CaFullDecrease
condition: ( full) condition: ( full)
out_context: *Ca2FullIncrease 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 ) hypothesis: NOT ( full ) AND NOT ( empty )
action: [ increase, decrease] action: [ increase, decrease]
trace: None trace: None
``` }
##### *Ca2FullIncrease
###### Ca2FullIncrease
```Gen
IncreasePreCa2Full
type: accumulator
in_context: *Ca2FullIncrease // snippet: *Ca2FullIncrease
void: INSTANTIATE [ accumulator: Ca2FullIncrease, event: 12x, cost: 3x, context: NOT *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
condition: ( empty ) condition: ( empty )
out_context: *RrpFullDecrease out_context: *RrpFullDecrease
condition: ( full) condition: ( full)
out_context: *IncreaseRrpFull out_context: *IncreaseRrpFull
``` }
##### *RrpFullDecrease // RRPFull: *fixed
void: INSTANTIATE [ contextor: RrpCheck, event: 60x, context: *fixed ]
###### RrpFullDecrease
```Gen
DecreasePreRrpFull
type: accumulator
in_context: *RrpFullDecrease
// snippet: *RrpFullDecrease
void: INSTANTIATE [ accumulator: RrpFullDecrease, event: 12x, cost: 3x, context: NOT *RrpFullDecrease ] {
hypothesis: NOT ( full ) AND NOT ( empty ) hypothesis: NOT ( full ) AND NOT ( empty )
action: [ increase, decrease] action: [ increase, decrease]
trace: None 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 ) hypothesis: NOT ( full ) AND NOT ( empty )
action: [ increase, decrease] action: [ increase, decrease]
trace: None trace: None
}
``` ```