-
Notifications
You must be signed in to change notification settings - Fork 8
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
Create python-app.yml #53
Conversation
Temporarily disable linting
@@ -32,8 +32,7 @@ def __init__(self, terms: Tuple[int]=tuple()) -> None: | |||
self._set: Set[int] = OrderedSet(terms) | |||
self._hash = None | |||
|
|||
@classmethod | |||
def interleave(self, base1, base2) -> Type['Base']: | |||
def interleave(self, base2: Type['Base']) -> Set[int]: | |||
'''interleave two bases''' | |||
# TODO: DOUBT -- | |||
# What if some evidence is lost (because of forgetting)? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Some evidence would be lost.
A record of evidence used in each derivation must be maintained, although given AIKR [...,] this is only a partial record, which is not an issue in practice.
Ref.
Hammer, P., Lofthouse, T., & Wang, P. (2016). The OpenNARS implementation of the non-axiomatic reasoning system. In Artificial General Intelligence: 9th International Conference, AGI 2016, New York, NY, USA, July 16-19, 2016, Proceedings 9 (pp. 160-170). Springer International Publishing.
Adding simple workflow to run tests automatically.
Will later add ability to show status on the PR.