├── .gitignore ├── LICENSE ├── README.md ├── hityper ├── __init__.py ├── __main__.py ├── config.py ├── rej_typerule.py ├── stdtypes.py ├── tdg.py ├── tdg_generator.py ├── typeobject.py ├── typerule.py ├── usertype_finder.py └── utils.py ├── imgs └── workflow.png ├── requirements.txt └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/README.md -------------------------------------------------------------------------------- /hityper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/__init__.py -------------------------------------------------------------------------------- /hityper/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/__main__.py -------------------------------------------------------------------------------- /hityper/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/config.py -------------------------------------------------------------------------------- /hityper/rej_typerule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/rej_typerule.py -------------------------------------------------------------------------------- /hityper/stdtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/stdtypes.py -------------------------------------------------------------------------------- /hityper/tdg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/tdg.py -------------------------------------------------------------------------------- /hityper/tdg_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/tdg_generator.py -------------------------------------------------------------------------------- /hityper/typeobject.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/typeobject.py -------------------------------------------------------------------------------- /hityper/typerule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/typerule.py -------------------------------------------------------------------------------- /hityper/usertype_finder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/usertype_finder.py -------------------------------------------------------------------------------- /hityper/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/hityper/utils.py -------------------------------------------------------------------------------- /imgs/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/imgs/workflow.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JohnnyPeng18/HiTyper/HEAD/setup.py --------------------------------------------------------------------------------