Skip to content

Commit 2121e7f

Browse files
committed
rename to TupleVectorSpaces (closes #2)
1 parent 91d8632 commit 2121e7f

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "TupleVecs"
1+
name = "TupleVectorSpaces"
22
uuid = "165f1ec4-e0fe-4040-a14f-238e8d88417a"
33
authors = ["Steven G. Johnson <[email protected]>"]
44
version = "1.0.0-DEV"

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# TupleVecs
1+
# TupleVectorSpaces
22

3-
[![Build Status](https://github.com/JuliaMath/TupleVecs.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaMath/TupleVecs.jl/actions/workflows/CI.yml?query=branch%3Amain)
3+
[![Build Status](https://github.com/JuliaMath/TupleVectorSpaces.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaMath/TupleVectorSpaces.jl/actions/workflows/CI.yml?query=branch%3Amain)
44

55
This Julia package allows you to take a tuple of objects and treat it as a "vector", in the sense of an [abstract vector space](https://en.wikipedia.org/wiki/Vector_space) (*not* a 1d array), as long as the components are vectors — that is, as long as they support addition, subtraction, and multiplication by scalars. Technically, this is known as a [direct sum](https://en.wikipedia.org/wiki/Direct_sum) of vector spaces, and is represented in this package by the `TupleVec` type.
66

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
"""
2-
The `TupleVecs` module exports a new type [`TupleVec`](@ref) that
2+
The `TupleVectorSpaces` module exports a new type [`TupleVec`](@ref) that
33
wraps around a tuple (or named tuple), and allows it to act like
44
element of an abstract vector space defined by the
55
[direct sum](https://en.wikipedia.org/wiki/Direct_sum) of the tuple components.
66
"""
7-
module TupleVecs
7+
module TupleVectorSpaces
88
export TupleVec
99

1010
include("types.jl")

test/runtests.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
using TupleVecs, LinearAlgebra, Test
1+
using TupleVectorSpaces, LinearAlgebra, Test
22

33
v = TupleVec(3,[4,5],6.0)
44
w = TupleVec(1.2f0,[1,2],1)

0 commit comments

Comments
 (0)