We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need a way to generate a has_any() logical net that also includes the values contributing to that net underneath it.
has_any()
So, instead of:
1 2 3 4 net-A net-B
The option to create:
net-A 1 2 net-B 3 4
Initial thoughts about this are to add an expand kwarg.
expand
net_views.add_method( name='Likely any(4,5,6)', kwargs={ 'text': {'en-GB': 'Net likely'}, 'logic': [4, 5, 6], 'expand': True } )
But this would also have to be implemented for block-logic (here I am using the new style proposed in #75):
block-logic
net_views.add_method( name='Top_Middle_Bottom', kwargs={ 'block-logic': { 'expand': True, 'items': [ {'top2': frange('9,10'), 'text': {'main': 'Top 2 Box'}}, {'mid3': frange('6-8'), 'text': {'main': 'Middle 3 Box'}}, {'bot5': frange('1-5'), 'text': {'main': 'Bottom 5 Box'}}, {'others': frange('11-12'), 'text': {'main': 'Others'}, 'expand': False} ] } } )
The text was updated successfully, but these errors were encountered:
This will be resolved by #290.
Sorry, something went wrong.
alextanski
No branches or pull requests
We need a way to generate a
has_any()
logical net that also includes the values contributing to that net underneath it.So, instead of:
The option to create:
Initial thoughts about this are to add an
expand
kwarg.But this would also have to be implemented for
block-logic
(here I am using the new style proposed in #75):The text was updated successfully, but these errors were encountered: