Git Product home page Git Product logo

Comments (1)

fgmacedo avatar fgmacedo commented on May 23, 2024

@hwerbi , we've implemented a few checks built-in:

  • Are there states defined?
  • Are there transitions defined?
  • Is there one and only one initial state?
  • Is the statemachine graph a single component? (Is there any disconected sub-graph? Unheachable states?)

Other tests can be performed the same way, please see

def check(self):
if not self.states:
raise InvalidDefinition(_('There are no states.'))
if not self.transitions:
raise InvalidDefinition(_('There are no transitions.'))
initials = [s for s in self.states if s.initial]
if len(initials) != 1:
raise InvalidDefinition(_('There should be one and only one initial state. '
'Your currently have these: {!r}'.format(initials)))
self.initial_state = initials[0]
disconnected_states = self._disconnected_states(self.initial_state)
if (disconnected_states):
raise InvalidDefinition(_('There are unreachable states. '
'The statemachine graph should have a single component. '
'Disconnected states: [{}]'.format(disconnected_states)))
if self.current_state_value is None:
if self.start_value:
self.current_state_value = self.start_value
else:
self.current_state_value = self.initial_state.value

Let me know if I can help with something, feel free to reopen the issue.

from python-statemachine.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.