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

Update for Cython 3.x (Sourcery refactored) #16

Open
wants to merge 1 commit into
base: development
Choose a base branch
from

Conversation

sourcery-ai[bot]
Copy link

@sourcery-ai sourcery-ai bot commented Dec 5, 2023

Pull Request #15 refactored by Sourcery.

If you're happy with these changes, merge this Pull Request using the Squash and merge strategy.

NOTE: As code is pushed to the original Pull Request, Sourcery will
re-run and update (force-push) this Pull Request with new refactorings as
necessary. If Sourcery finds no refactorings at any point, this Pull Request
will be closed automatically.

See our documentation here.

Run Sourcery locally

Reduce the feedback loop during development by using the Sourcery editor plugin:

Review changes via command line

To manually merge these changes, make sure you're on the development branch, then run:

git fetch origin sourcery/development
git merge --ff-only FETCH_HEAD
git reset HEAD^

Help us improve this pull request!

@sourcery-ai sourcery-ai bot requested a review from gjbex December 5, 2023 07:42
self._x = float(value)
self._x = value
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function Point.x refactored with the following changes:

self._y = float(value)
self._y = value
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function Point.y refactored with the following changes:

for iter_nr in range(options.iter):
for _ in range(options.iter):
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines 31-31 refactored with the following changes:

for iter_nr in range(options.iter):
for _ in range(options.iter):
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines 30-30 refactored with the following changes:

for iter_nr in range(options.iter):
for _ in range(options.iter):
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Lines 27-27 refactored with the following changes:

result_as_list = [prime for prime in p[:len_p]]
result_as_list = list(p[:len_p])
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function primes refactored with the following changes:

if nb_primes > 1000:
nb_primes = 1000

nb_primes = min(nb_primes, 1000)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function primes refactored with the following changes:

This removes the following comments ( why? ):

# Let's copy the result into a Python list:

Comment on lines 4 to 13
if kmax > 1000:
kmax = 1000
kmax = min(kmax, 1000)
k = 0
n = 2
while k < kmax:
i = 0
while i < k and n % p[i] != 0:
i = i + 1
i += 1
if i == k:
p[k] = n
k = k + 1
k += 1
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function primes refactored with the following changes:

min_time = min([np.mean(timings[algo]) for algo in algorithms])
min_time = min(np.mean(timings[algo]) for algo in algorithms)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function main refactored with the following changes:

Comment on lines 42 to 45
auto_str = ''
for i, result in enumerate(self._rules):
auto_str += f'{i//4 % 2}{i//2 % 2}{i % 2} -> {result}\n'
auto_str = ''.join(
f'{i // 4 % 2}{i // 2 % 2}{i % 2} -> {result}\n'
for i, result in enumerate(self._rules)
)
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Function AutomatonRunner.__str__ refactored with the following changes:

  • Use str.join() instead of for loop (use-join)

@sourcery-ai sourcery-ai bot force-pushed the sourcery/development branch from 13826bd to cac0a96 Compare January 9, 2024 10:40
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants