Skip to content

Commit de1284f

Browse files
committed
DecomposingRepresentations --> DecomposingGroupRepresentations
1 parent bbfc528 commit de1284f

File tree

8 files changed

+26
-26
lines changed

8 files changed

+26
-26
lines changed

.github/workflows/CI.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,6 @@ jobs:
7373
shell: julia --project=docs --color=yes {0}
7474
run: |
7575
using Documenter: DocMeta, doctest
76-
using DecomposingRepresentations
77-
DocMeta.setdocmeta!(DecomposingRepresentations, :DocTestSetup, :(using DecomposingRepresentations); recursive=true)
78-
doctest(DecomposingRepresentations)
76+
using DecomposingGroupRepresentations
77+
DocMeta.setdocmeta!(DecomposingGroupRepresentations, :DocTestSetup, :(using DecomposingGroupRepresentations); recursive=true)
78+
doctest(DecomposingGroupRepresentations)

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "DecomposingRepresentations"
1+
name = "DecomposingGroupRepresentations"
22
uuid = "3934549d-b4b9-4a85-8fa6-9c281fbf1a3e"
33
authors = ["Viktor Korotynskiy <korotynskiy.viktor@gmail.com> and contributors"]
44
version = "0.1.0"

README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# DecomposingRepresentations.jl
1+
# DecomposingGroupRepresentations.jl
22

3-
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://multivariatepolynomialsystems.github.io/DecomposingRepresentations.jl/stable/)
4-
[![Dev](https://img.shields.io/badge/docs-dev-purple.svg)](https://multivariatepolynomialsystems.github.io/DecomposingRepresentations.jl/dev/)
5-
<!-- [![Build Status](https://github.com/multivariatepolynomialsystems/DecomposingRepresentations.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/multivariatepolynomialsystems/DecomposingRepresentations.jl/actions/workflows/CI.yml?query=branch%3Amain)
6-
[![Coverage](https://codecov.io/gh/multivariatepolynomialsystems/DecomposingRepresentations.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/azoviktor/DecomposingRepresentations.jl) -->
3+
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://multivariatepolynomialsystems.github.io/DecomposingGroupRepresentations.jl/stable/)
4+
[![Dev](https://img.shields.io/badge/docs-dev-purple.svg)](https://multivariatepolynomialsystems.github.io/DecomposingGroupRepresentations.jl/dev/)
5+
<!-- [![Build Status](https://github.com/multivariatepolynomialsystems/DecomposingGroupRepresentations.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/multivariatepolynomialsystems/DecomposingGroupRepresentations.jl/actions/workflows/CI.yml?query=branch%3Amain)
6+
[![Coverage](https://codecov.io/gh/multivariatepolynomialsystems/DecomposingGroupRepresentations.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/azoviktor/DecomposingGroupRepresentations.jl) -->
77

8-
DecomposingRepresentations.jl is a Julia package for decomposing representations of reductive groups acting on multivariate polynomials.
8+
DecomposingGroupRepresentations.jl is a Julia package for decomposing representations of reductive groups acting on multivariate polynomials.
99

1010
## Installation
1111

1212
Enter the Pkg REPL by pressing `]` from the Julia REPL and then type
1313
```julia
14-
add DecomposingRepresentations
14+
add DecomposingGroupRepresentations
1515
```
1616
To get back to the Julia REPL, press backspace.
1717

1818
## Usage
1919
```julia
20-
using DecomposingRepresentations
20+
using DecomposingGroupRepresentations
2121

2222
@polyvar x y z
2323
vars = [x, y, z]

docs/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[deps]
2-
DecomposingRepresentations = "3934549d-b4b9-4a85-8fa6-9c281fbf1a3e"
2+
DecomposingGroupRepresentations = "3934549d-b4b9-4a85-8fa6-9c281fbf1a3e"
33
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

docs/make.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
using DecomposingRepresentations
1+
using DecomposingGroupRepresentations
22
using Documenter
33

4-
DocMeta.setdocmeta!(DecomposingRepresentations, :DocTestSetup, :(using DecomposingRepresentations); recursive=true)
4+
DocMeta.setdocmeta!(DecomposingGroupRepresentations, :DocTestSetup, :(using DecomposingGroupRepresentations); recursive=true)
55

66
makedocs(;
7-
modules=[DecomposingRepresentations],
7+
modules=[DecomposingGroupRepresentations],
88
authors="Viktor Korotynskiy <korotynskiy.viktor@gmail.com> and contributors",
9-
repo="https://github.com/MultivariatePolynomialSystems/DecomposingRepresentations.jl",
10-
sitename="DecomposingRepresentations.jl",
9+
repo="https://github.com/MultivariatePolynomialSystems/DecomposingGroupRepresentations.jl",
10+
sitename="DecomposingGroupRepresentations.jl",
1111
format=Documenter.HTML(;
1212
prettyurls=get(ENV, "CI", "false") == "true",
13-
canonical="https://multivariatepolynomialsystems.github.io/DecomposingRepresentations.jl",
13+
canonical="https://multivariatepolynomialsystems.github.io/DecomposingGroupRepresentations.jl",
1414
edit_link="main",
1515
assets=String[],
1616
),
@@ -35,6 +35,6 @@ makedocs(;
3535
)
3636

3737
deploydocs(;
38-
repo="github.com/MultivariatePolynomialSystems/DecomposingRepresentations.jl.git",
38+
repo="github.com/MultivariatePolynomialSystems/DecomposingGroupRepresentations.jl.git",
3939
devbranch="main",
4040
)

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
```@meta
2-
CurrentModule = DecomposingRepresentations
2+
CurrentModule = DecomposingGroupRepresentations
33
```
44

55
# Introduction
6-
DecomposingRepresentations.jl is a Julia package that provides an API for decomposing representations of reductive groups acting on multivariate polynomials using [`DynamicPolynomials.jl`](https://github.com/JuliaAlgebra/DynamicPolynomials.jl).
6+
DecomposingGroupRepresentations.jl is a Julia package that provides an API for decomposing representations of reductive groups acting on multivariate polynomials using [`DynamicPolynomials.jl`](https://github.com/JuliaAlgebra/DynamicPolynomials.jl).
77

88
## Quick start
99

1010
```@repl
11-
using DecomposingRepresentations
11+
using DecomposingGroupRepresentations
1212
1313
@polyvar x y z
1414
vars = [x, y, z]

src/DecomposingRepresentations.jl renamed to src/DecomposingGroupRepresentations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module DecomposingRepresentations
1+
module DecomposingGroupRepresentations
22

33
using SparseArrays: SparseMatrixCSC, sparse, findnz, spzeros
44
using LinearAlgebra: Diagonal, nullspace, I, dot, norm

test/runtests.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
using DecomposingRepresentations
1+
using DecomposingGroupRepresentations
22
using Test
33

4-
@testset "DecomposingRepresentations.jl" begin
4+
@testset "DecomposingGroupRepresentations.jl" begin
55

66
end

0 commit comments

Comments
 (0)