Get a list of an STV's input simulation variables.
(stv->ins x) → inputs
We collect simulation variables from all input and initial lines. For instance, if you have an input line like:
("a_bus" _ _ _ a1 _ a2 _ _)
Then the returned list will include
Function:
(defun stv->ins (x) (declare (xargs :guard (processed-stv-p x))) (let ((__function__ 'stv->ins)) (declare (ignorable __function__)) (b* (((processed-stv x) x) ((compiled-stv cstv) x.compiled-stv)) (alist-keys cstv.in-usersyms))))