From f6a0382aa5c396ebba7bd4837b72e79ce4b40f24 Mon Sep 17 00:00:00 2001 From: Oloneus <57040984+Oloneus@users.noreply.github.com> Date: Fri, 17 Jun 2022 10:37:25 +0200 Subject: [PATCH] optimization Line 01: A=1e3 n=A o=16e4 Line 05: p=1e6 no need to waste space on zeros --- bundles/basic/ISAN-basic_bundle.yolol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bundles/basic/ISAN-basic_bundle.yolol b/bundles/basic/ISAN-basic_bundle.yolol index 8155877..ee27a97 100644 --- a/bundles/basic/ISAN-basic_bundle.yolol +++ b/bundles/basic/ISAN-basic_bundle.yolol @@ -1,8 +1,8 @@ -A=1000 n=1000 pr=0 sp=0 dv=(9.6+2.4*pr)*n so=1-sp o=160000 e=8*o c="" +A=1e3 n=A pr=0 sp=0 dv=(9.6+2.4*pr)*n so=1-sp o=16e4 e=8*o c="" z="origin_" mr=z+"north" br=z+"south" cr=z+"east" z+="west" sm="\nS: " u=e*3/13 l=2*o mm=l*13/19 k=e*3/19 sl="\nsignal lost" x/=so sm=c ss=c rr="ISAN2 :_\n " xm="\nX: " ym="\nY: " zm="\nZ: " nn=l*13/3 -ej=16*sp h="Q" pj=14-pr b=0.5 p=1000000 :at=mr :bt=br :ct=cr :dt=z x=0 +ej=16*sp h="Q" pj=14-pr b=0.5 p=1e6 :at=mr :bt=br :ct=cr :dt=z x=0 t=p-:a t*=t i=p-:b i*=i g=p-:c g*=g f=p-:d f*=f x/=:a*:b*:c*:d goto14 h="M" t=p-:a t*=t er=(t-el)/4 el=t x/=:a :at=br x=8 gotopj// ISAN i=p-:a i*=i fr=(i-fl)/4 fl=i x/=:a :at=cr x=9 gotopj// From Collective