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

Release candidate #489

Draft
wants to merge 4 commits into
base: master
Choose a base branch
from
Draft
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 @@ -98,9 +98,9 @@ Then, select one of the following targets and `make` it according to your purpos

| Target | Description
|-------------|-------------
| `all` | Build shared-library `libmeevax.0.5.304.so` and executable `meevax`.
| `all` | Build shared-library `libmeevax.0.5.308.so` and executable `meevax`.
| `install` | Copy files into `/usr/local` directly.
| `package` | Generate debian package `meevax_0.5.304_amd64.deb` (only Ubuntu). The generated package can be installed by `sudo apt install build/meevax_0.5.304_amd64.deb`.
| `package` | Generate debian package `meevax_0.5.308_amd64.deb` (only Ubuntu). The generated package can be installed by `sudo apt install build/meevax_0.5.308_amd64.deb`.
| `test` | Test executable `meevax`. This target requires Valgrind to be installed.
| `uninstall` | Remove files copied to `/usr/local` directly by target `install`.

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.304
0.5.308
8 changes: 0 additions & 8 deletions include/meevax/kernel/complex.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,14 +41,6 @@ namespace meevax::inline kernel
};

auto operator <<(std::ostream &, complex const&) -> std::ostream &;

auto real_part(object const&) -> object const&;

auto imag_part(object const&) -> object const&;

auto magnitude(object const&) -> object;

auto angle(object const&) -> object;
} // namespace meevax::kernel

#endif // INCLUDED_MEEVAX_KERNEL_COMPLEX_HPP
8 changes: 8 additions & 0 deletions include/meevax/kernel/number.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -337,6 +337,14 @@ inline namespace number

auto pow(object const&, object const&) -> object;

auto real(object const&) -> object;

auto imag(object const&) -> object;

auto magnitude(object const&) -> object;

auto angle(object const&) -> object;

auto numerator(object const&) -> object;

auto denominator(object const&) -> object;
Expand Down
Loading
Loading