Skip to content

Commit

Permalink
update version
Browse files Browse the repository at this point in the history
  • Loading branch information
azoviktor committed May 24, 2024
1 parent 65845cd commit 2a1ef03
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 8 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "DecomposingPolynomialSystems"
uuid = "f22b1612-9f73-4f98-889e-ed5396e1a4da"
authors = ["Viktor Korotynskiy <korotynskiy.viktor@gmail.com> and contributors"]
version = "1.0.0-DEV"
version = "1.0.0"

[deps]
AbstractAlgebra = "c3fe647b-3220-5bb0-a1ea-a7954cac585d"
Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# DecomposingPolynomialSystems.jl

[![BasedOn](https://img.shields.io/badge/Based%20On%20-%20HomotopyContinuation.jl%20-%20brightgreen?color=%23B22222%09)](https://www.juliahomotopycontinuation.org/)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://multivariatepolynomialsystems.github.io/DecomposingPolynomialSystems.jl/dev)

DecomposingPolynomialSystems.jl is a Julia package that computes the symmetries that fix the parameters (specifically, the group of deck transformations) of a parametric polynomial system with finitely many solutions with a view towards decomposing the given polynomial system.
Expand Down
3 changes: 0 additions & 3 deletions src/DecomposingPolynomialSystems.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ const HC = HomotopyContinuation
using HomotopyContinuation.ModelKit
export @var, Variable, Expression, System

# Exports for testing
# export degree

using SparseArrays: SparseVector, SparseMatrixCSC, spzeros, AbstractSparseVector, findnz, sparse
using Combinatorics: partitions, multiset_permutations, combinations
using LinearAlgebra: nullspace
Expand Down
6 changes: 3 additions & 3 deletions src/deck_transformations.jl
Original file line number Diff line number Diff line change
Expand Up @@ -623,13 +623,13 @@ function symmetries_fixing_parameters!(
logging::Bool=false
)

if length(F.deck_permutations) == 1 # trivial group of symmetries
if length(deck_permutations(F)) == 1 # trivial group of symmetries
return DeckTransformationGroup(F)
end

scalings = _scalings_commuting_with_deck(F, scaling_symmetries(F))
scalings = param_dep ? scalings : restrict_scalings(scalings, unknowns(F)) # TODO: justify!
if isempty(scalings.grading)
if isempty(grading(scalings))
logging && printstyled("Running dense version...\n", color=:green)
return symmetries_fixing_parameters_dense!(
F;
Expand All @@ -642,7 +642,7 @@ function symmetries_fixing_parameters!(
logging && printstyled("Running graded version...\n", color=:green)
return symmetries_fixing_parameters_graded!(
F,
scalings;
grading(scalings);
degree_bound=degree_bound,
tols=tols,
logging=logging
Expand Down

2 comments on commit 2a1ef03

@azoviktor
Copy link
Member Author

Choose a reason for hiding this comment

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

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

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

Registration pull request created: JuliaRegistries/General/107565

Tip: Release Notes

Did you know you can add release notes too? Just add markdown formatted text underneath the comment after the text
"Release notes:" and it will be added to the registry PR, and if TagBot is installed it will also be added to the
release that TagBot creates. i.e.

@JuliaRegistrator register

Release notes:

## Breaking changes

- blah

To add them here just re-invoke and the PR will be updated.

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v1.0.0 -m "<description of version>" 2a1ef03f63769f47e84299155612a96b56c37113
git push origin v1.0.0

Please sign in to comment.