List of variables for the incoming function parameters
(self)
| 1394 | |
| 1395 | @property |
| 1396 | def parameter_vars(self) -> 'variable.ParameterVariables': |
| 1397 | """List of variables for the incoming function parameters""" |
| 1398 | result = core.BNGetFunctionParameterVariables(self.handle) |
| 1399 | var_list = [] |
| 1400 | for i in range(0, result.count): |
| 1401 | var_list.append(variable.Variable.from_BNVariable(self, result.vars[i])) |
| 1402 | confidence = result.confidence |
| 1403 | core.BNFreeParameterVariables(result) |
| 1404 | return variable.ParameterVariables(var_list, confidence, self) |
| 1405 | |
| 1406 | @parameter_vars.setter |
| 1407 | def parameter_vars( |
nothing calls this directly
no test coverage detected