(aignet-init max-outs max-regs max-ins max-nodes aignet) clears the aignet, setting the arrays to the given sizes.
Logically, just returns
In the execution, we reset the counters associated with the Aignet and also resize the stobj arrays to the indicated sizes.
Note: the
Function:
(defun aignet$a::aignet-init^ (max-outs max-regs max-ins max-nodes aignet) (declare (type (unsigned-byte 29) max-outs) (type (unsigned-byte 29) max-regs) (type (unsigned-byte 29) max-ins) (type (unsigned-byte 29) max-nodes)) (declare (xargs :guard (posp max-nodes))) (declare (ignore max-outs max-regs max-ins max-nodes aignet)) (let ((__function__ 'aignet$a::aignet-init^)) (declare (ignorable __function__)) nil))