From 95dcacea5a1eabfee54c3edbe11b844bf1e5a2ec Mon Sep 17 00:00:00 2001 From: Daniel Cerqueira Date: Wed, 25 Feb 2026 15:13:52 +0000 Subject: replace ap function name to algo --- examples/speech/en-random.lali | 4 ++-- examples/speech/en-random_more.lali | 4 ++-- examples/speech/pt-fixed_answer.lali | 4 ++-- examples/speech/pt-identify.lali | 2 +- examples/speech/pt-random.lali | 4 ++-- examples/speech/pt-random_more.lali | 4 ++-- 6 files changed, 11 insertions(+), 11 deletions(-) (limited to 'examples/speech') diff --git a/examples/speech/en-random.lali b/examples/speech/en-random.lali index feda6da..9ac271d 100755 --- a/examples/speech/en-random.lali +++ b/examples/speech/en-random.lali @@ -24,13 +24,13 @@ (defun assoc (el lst) (fill ((dif el (car (car lst))) (car lst)) - ((ap lst) '(f f)) + ((algo lst) '(f f)) (f (assoc el (cdr lst))))) (defun without (el lst) (fill ((dif el (car lst)) f) - ((ap (car lst)) t) + ((algo (car lst)) t) (f (without el (cdr lst))))) ;; vv begin of training options vv diff --git a/examples/speech/en-random_more.lali b/examples/speech/en-random_more.lali index 01a3cf8..fd94c6e 100755 --- a/examples/speech/en-random_more.lali +++ b/examples/speech/en-random_more.lali @@ -38,13 +38,13 @@ (defun assoc (el lst) (fill ((dif el (car (car lst))) (car lst)) - ((ap lst) '(f f)) + ((algo lst) '(f f)) (f (assoc el (cdr lst))))) (defun without (el lst) (fill ((dif el (car lst)) f) - ((ap (car lst)) t) + ((algo (car lst)) t) (f (without el (cdr lst))))) ;; vv begin of training options vv diff --git a/examples/speech/pt-fixed_answer.lali b/examples/speech/pt-fixed_answer.lali index a50820d..0002672 100755 --- a/examples/speech/pt-fixed_answer.lali +++ b/examples/speech/pt-fixed_answer.lali @@ -19,13 +19,13 @@ (defun assoc (el lst) (fill ((dif el (car (car lst))) (car lst)) - ((ap lst) '(f f)) + ((algo lst) '(f f)) (f (assoc el (cdr lst))))) (defun without (el lst) (fill ((dif el (car lst)) f) - ((ap (car lst)) t) + ((algo (car lst)) t) (f (without el (cdr lst))))) ;; vv begin of training options vv diff --git a/examples/speech/pt-identify.lali b/examples/speech/pt-identify.lali index aac6416..bef74ef 100755 --- a/examples/speech/pt-identify.lali +++ b/examples/speech/pt-identify.lali @@ -13,7 +13,7 @@ (defun assoc (number lst) (fill ((dif number (car (car lst))) (car lst)) - ((ap lst) f) + ((algo lst) f) (f (assoc number (cdr lst))))) (defun train-ups-and-downs () diff --git a/examples/speech/pt-random.lali b/examples/speech/pt-random.lali index 6ff31fb..1b3407c 100755 --- a/examples/speech/pt-random.lali +++ b/examples/speech/pt-random.lali @@ -25,13 +25,13 @@ (defun assoc (el lst) (fill ((dif el (car (car lst))) (car lst)) - ((ap lst) '(f f f)) + ((algo lst) '(f f f)) (f (assoc el (cdr lst))))) (defun without (el lst) (fill ((dif el (car lst)) f) - ((ap (car lst)) t) + ((algo (car lst)) t) (f (without el (cdr lst))))) ;; vv begin of training options vv diff --git a/examples/speech/pt-random_more.lali b/examples/speech/pt-random_more.lali index 37155e1..0c91c2c 100755 --- a/examples/speech/pt-random_more.lali +++ b/examples/speech/pt-random_more.lali @@ -38,13 +38,13 @@ (defun assoc (el lst) (fill ((dif el (car (car lst))) (car lst)) - ((ap lst) '(f f)) + ((algo lst) '(f f)) (f (assoc el (cdr lst))))) (defun without (el lst) (fill ((dif el (car lst)) f) - ((ap (car lst)) t) + ((algo (car lst)) t) (f (without el (cdr lst))))) ;; vv begin of training options vv -- cgit