Skip to content

Commit cb78a99

Browse files
committed
fix README inconsistencies
1 parent 109bcfa commit cb78a99

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# modular-nested-exponentiation
22

3-
An algorithm that computes modular nested exponents (or towers) efficiently.
3+
An algorithm that computes modular nested exponentiation efficiently.
44

55
[![GitHub Workflow Status (branch)](https://img.shields.io/github/workflow/status/avivbrook/modular-nested-exponentiation/Test/master?logo=github&style=flat-square)](https://github.com/avivbrook/modular-nested-exponentiation/actions)
66
[![PyPI - License](https://img.shields.io/pypi/l/mod-nest-exp?style=flat-square)](https://choosealicense.com/licenses/gpl-3.0/)
@@ -19,7 +19,7 @@ An algorithm that computes modular nested exponents (or towers) efficiently.
1919

2020
## 🗺️ Overview
2121

22-
`mod-nest-exp` exports a Python function `mod_nest-exp` that takes as input an arbitrarily long sequence of positive integers `a₁, a₂, ..., aₙ` and a positive integer `m` and computes `a₁^(a₂^(···^aₙ)) mod m` efficiently (that is, without computing the value of the nested exponent).
22+
`mod-nest-exp` exports a Python function `mod_nest_exp` that takes as input an arbitrarily long sequence of positive integers `a₁, a₂, ..., aₙ` and a positive integer `m` and computes `a₁^(a₂^(···^aₙ)) mod m` efficiently (that is, without computing the value of the nested exponent).
2323

2424
## 🏳️ Prerequisites
2525

@@ -44,7 +44,7 @@ A development version can be installed from GitHub
4444
using `setuptools`, provided you have `sympy` installed already:
4545
```console
4646
$ git clone https://github.com/avivbrook/modular-nested-exponentiation
47-
$ cd modular-towers
47+
$ cd modular-nested-exponentiation
4848
$ python setup.py install
4949
```
5050

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = mod-nest-exp
3-
version = 1.0.8
3+
version = 1.0.9
44
description = An algorithm that computes modular nested exponentiation efficiently.
55
long_description = file: README.md
66
long_description_content_type = text/markdown

0 commit comments

Comments
 (0)