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

Fix wrong name in python dlplan core api #64

Merged
merged 2 commits into from
Jul 30, 2024
Merged
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
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ find_package(dlplan 0.1 REQUIRED COMPONENTS core generator policy statespace nov

### 3.3. Additional Compile Flags

- -DBUILD_TESTS:BOOL=TRUE enables compilation of tests
- `-DBUILD_TESTS:BOOL=TRUE` enables compilation of tests

### 3.4. Building the Python Interface

Expand Down Expand Up @@ -116,7 +116,7 @@ python3 examples/generator/generator.py

You can run the C++ tests with:
```console
cd build && ctest
cd build/tests && ctest
```

The Python bindings also come with their own set of tests. Run them with
Expand Down
2 changes: 1 addition & 1 deletion api/python/src/dlplan/core/__init__.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ class SyntacticElementFactory:
def make_sum_concept_distance_numerical(self, concept_from: Concept, role: Role, concept_to: Concept) -> Numerical: ...
def make_sum_role_distance_numerical(self, role_from: Role, role: Role, role_to: Role) -> Numerical: ...

def make_and_concept(self, role_left: Role, role_right: Role) -> Role: ...
def make_and_role(self, role_left: Role, role_right: Role) -> Role: ...
def make_compose_role(self, role_left: Role, role_right: Role) -> Role: ...
def make_diff_role(self, role_left: Role, role_right: Role) -> Role: ...
def make_identity_role(self, concept: Concept) -> Role: ...
Expand Down
Loading