From 6c964eb54c0056d14a1b929dc09c75240a585cea Mon Sep 17 00:00:00 2001 From: Peter Mikkelsen Date: Mon, 10 Jan 2022 19:32:39 +0000 Subject: Implement ( expr ) and improve stranding --- functions.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'functions.c') diff --git a/functions.c b/functions.c index 1c60a82..ddd5532 100644 --- a/functions.c +++ b/functions.c @@ -69,8 +69,7 @@ fnCatenateFirst(Array *left, Array *right) left = fnRavel(left); if(right->rank == 0) right = fnRavel(right); - - print("Catenating: %S and %S\n", pparray(left), pparray(right)); + /* assume two vectors of same type for now */ Array *res = mkarray(left->type, 1, left->size+right->size); res->shape[0] = left->shape[0] + right->shape[0]; -- cgit v1.2.3