Skip to content

Commit

Permalink
paper
Browse files Browse the repository at this point in the history
  • Loading branch information
Freakwill committed Jan 1, 2025
1 parent 48cfd03 commit e0772cc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,17 +25,16 @@ jobs:
restore-keys: |
${{ runner.os }}-pip-
- name: Install dependencies
- name: Upgrade pip
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Run tests
if: >
github.event_name == 'push' &&
contains(github.event.head_commit.message, '[test]') ||
github.event_name == 'pull_request' &&
! contains(github.event.pull_request.title, '[no test]')
github.event_name == 'push' && contains(github.event.head_commit.message, '[test]') ||
github.event_name == 'pull_request' && ! contains(github.event.pull_request.title, '[no test]')
run: |
echo "Install dependencies"
pip install -r requirements.txt
pip install pytest
pytest
4 changes: 0 additions & 4 deletions paper/paper.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,4 @@ class UserChromosome(BaseChromosome):
UserPopulation = StandardPopulation[UserChromosome] // 10
```

# Conclusion

`Pyrimidine` is a versatile framework suitable for implementing various evolution algorithms. Its design offers strong extensibility. A key factor is that it was developed inspired by algebra. For users developing novel algorithms, `pyrimidine` is a promising choice.

# References

0 comments on commit e0772cc

Please sign in to comment.