(m)
| 3961 | } |
| 3962 | |
| 3963 | function previousConnectionIndex(m) { |
| 3964 | var connection = model.equationConnections[0]; |
| 3965 | var states = equations[0].states; |
| 3966 | for (var i = 0, max = states.length; i < max; i++) { |
| 3967 | if (states[i].product === m) { |
| 3968 | return i; |
| 3969 | } |
| 3970 | } |
| 3971 | return connection.indexOf(m); |
| 3972 | } |
| 3973 | |
| 3974 | function matrixToString(m, stateIndex) { |
| 3975 | if (!m || !m.rows || !m.columns) return 'null'; |
no outgoing calls
no test coverage detected