(self, states)
| 676 | return states |
| 677 | |
| 678 | def set_states(self, states): |
| 679 | super().set_states(states) |
| 680 | if 'm' in states: |
| 681 | self.m = states['m'] |
| 682 | if 'v' in states: |
| 683 | self.v = states['v'] |
| 684 | |
| 685 | |
| 686 | class DistOpt(object): |
nothing calls this directly
no test coverage detected