tst4800.mal

来自「一个内存数据库的源代码这是服务器端还有客户端」· MAL 代码 · 共 33 行

MAL
33
字号
# testing the optimization of the pocket calculatorfunction f3():void;		t1:bat[:oid,:int] := bbp.bind("A_bat");        t3 := array.grid(4096,64,1,0);        t2 := array.grid(64,64,64,0);        t4:=batcalc.*(64,t3);        t5:= batcalc.+(t2,t4);        t6 := batcalc.oid(t5);        t7 := algebra.join(t6,t1);        t8:bat[:oid,:int] := bbp.bind("B_bat");        t9 := array.grid(4096,64,1,0);        t10 := array.grid(1,64,4096,0);        t11 := batcalc.*(64,t10);        t12 := batcalc.+(t9,t11);        t13 := batcalc.oid(t12);        t14 := algebra.join(t13,t8);        t15 := batcalc.*(t7,t14);        t16 := array.grid(64,64,64,0);        t17 := array.grid(1,64,4096,0);        t18 := batcalc.*(64,t17);        t19 := batcalc.+(t16,t18);        t20 := batcalc.oid(t19);        t21 := array.grid(1,4096,1,0);        t22 := aggr.sum(t15,t20,t21);        top := t22;        bat_0 := array.grid(64,64,1,0);        bat_1 := array.grid(1,64,64,0);		io.table(bat_0,bat_1,top);#       io.table(bat_0,bat_1,top);end f3;	optimizer.accumulators("user","f3");	mdb.list("user","f3");

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?