Skip to content
New issue

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

Make a simple command line tool for tilescope. #50

Open
wants to merge 4 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,4 +36,9 @@ def read(fname):
'pytest-isort==0.3.1',
'pytest-timeout==1.3.4',
],
entry_points={
'console_scripts': [
'permscope=tilescopethree.cli:main',
]
}
)
27 changes: 27 additions & 0 deletions tests/test_cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
import os

import pytest


def test_entrypoints():
exit_status = os.system('permscope --help')
assert exit_status == 0
exit_status = os.system('permscope list --help')
assert exit_status == 0
exit_status = os.system('permscope tree --help')
assert exit_status == 0


def test_list():
exit_status = os.system('permscope list')
assert exit_status == 0


@pytest.mark.timeout(20)
def test_tree():
exit_status = os.system('permscope tree 132 point_placements')
assert exit_status == 0
exit_status = os.system('permscope tree 132')
assert exit_status != 0
exit_status = os.system('permscope tree point_placements')
assert exit_status != 0
63 changes: 63 additions & 0 deletions tilescopethree/cli.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
import argparse

from comb_spec_searcher import StrategyPack
from tilescopethree import StrategyPacks, TileScopeTHREE
from tilings import Tiling


def list_stratpacks(args):
"""
Prints out every strategy pack available.
"""
for pack in dir(StrategyPacks):
if isinstance(getattr(StrategyPacks, pack), StrategyPack):
print(pack)
return 0


def search_tree(args):
"""
Search for a tree.
"""
print('searching for a tree')
try:
pack_to_run = getattr(StrategyPacks, args.strategy_pack)
except AttributeError as e:
print("Strategy pack '{}' was not found".format(args.strategy_pack))
return 1
start_class = Tiling.from_string(args.basis)
css = TileScopeTHREE(start_class, pack_to_run)
css.auto_search(status_update=30)
return 0


def main():
parser = argparse.ArgumentParser(
description='A command line tool for the Periscope algorithm.'
)
subparsers = parser.add_subparsers(title='subcommands')
# List command
helpstr = 'List all the strategy pack available'
parser_list = subparsers.add_parser('list', help=helpstr,
description=helpstr)
parser_list.set_defaults(func=list_stratpacks)
# Tree command
helpstr = ('Search for a tree with for a given permutation class with a '
'given strategy pack.')
parser_tree = subparsers.add_parser('tree', help=helpstr,
description=helpstr)
parser_tree.add_argument('basis', type=str, help='The basis of the '
'permutation class. The permutation can be 1 or '
'0-based and are separated by an underscore')
parser_tree.add_argument('strategy_pack', type=str, help='The strategy '
'pack to run. The strategy defines the set of '
'strategy that will be used to expand the '
'universe of combinatorial classes.')
parser_tree.set_defaults(func=search_tree)
# Running the parsers
args = parser.parse_args()
return args.func(args)


if __name__ == "__main__":
main()