Skip to content

Commit

Permalink
remove mentions of Wasserstein
Browse files Browse the repository at this point in the history
  • Loading branch information
ToBlick committed Mar 8, 2024
1 parent 1e3e261 commit 6b78ae0
Show file tree
Hide file tree
Showing 7 changed files with 22 additions and 22 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/Documenter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ jobs:
- run: |
julia --project=docs -e '
using Documenter: DocMeta, doctest
using WassersteinDictionaries
DocMeta.setdocmeta!(WassersteinDictionaries, :DocTestSetup, :(using WassersteinDictionaries); recursive=true)
doctest(WassersteinDictionaries)'
using OptimalTransportTools
DocMeta.setdocmeta!(OptimalTransportTools, :DocTestSetup, :(using OptimalTransportTools); recursive=true)
doctest(OptimalTransportTools)'
4 changes: 2 additions & 2 deletions AUTHORS.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Authors

WassersteinDictionaries' development is coordinated by a group of *principal developers*, who are also its main contributors and who can be contacted in case of questions about WassersteinDictionaries. In addition, there are *contributors* who have provided substantial additions or modifications. Together, these two groups form "The WassersteinDictionaries Authors" as mentioned in the [LICENSE](LICENSE.md) file.
OptimalTransportTools' development is coordinated by a group of *principal developers*, who are also its main contributors and who can be contacted in case of questions about OptimalTransportTools. In addition, there are *contributors* who have provided substantial additions or modifications. Together, these two groups form "The OptimalTransportTools Authors" as mentioned in the [LICENSE](LICENSE.md) file.

## Principal Developers

Expand All @@ -11,7 +11,7 @@ WassersteinDictionaries' development is coordinated by a group of *principal dev

## Contributors

The following people contributed to WassersteinDictionaries and are listed in alphabetical order:
The following people contributed to OptimalTransportTools and are listed in alphabetical order:

* Tobias M. Blickhan
* Michael Kraus
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) The WassersteinDictionaries Authors (see [AUTHORS.md](AUTHORS.md))
Copyright (c) The OptimalTransportTools Authors (see [AUTHORS.md](AUTHORS.md))

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# OptimalTransportTools

[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaRCM.github.io/WassersteinDictionaries.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaRCM.github.io/WassersteinDictionaries.jl/dev)
[![Build Status](https://github.com/JuliaRCM/WassersteinDictionaries.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaRCM/WassersteinDictionaries.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/JuliaRCM/WassersteinDictionaries.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaRCM/WassersteinDictionaries.jl)
[![Stable](https://img.shields.io/badge/docs-stable-blue.svg)](https://JuliaRCM.github.io/OptimalTransportTools.jl/stable)
[![Dev](https://img.shields.io/badge/docs-dev-blue.svg)](https://JuliaRCM.github.io/OptimalTransportTools.jl/dev)
[![Build Status](https://github.com/JuliaRCM/OptimalTransportTools.jl/actions/workflows/CI.yml/badge.svg?branch=main)](https://github.com/JuliaRCM/OptimalTransportTools.jl/actions/workflows/CI.yml?query=branch%3Amain)
[![Coverage](https://codecov.io/gh/JuliaRCM/OptimalTransportTools.jl/branch/main/graph/badge.svg)](https://codecov.io/gh/JuliaRCM/OptimalTransportTools.jl)

Julia implementation of some grid-based computational optimal transport routines.
14 changes: 7 additions & 7 deletions docs/make.jl
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
using WassersteinDictionaries
using OptimalTransportTools
using Documenter

DocMeta.setdocmeta!(WassersteinDictionaries, :DocTestSetup, :(using WassersteinDictionaries); recursive=true)
DocMeta.setdocmeta!(OptimalTransportTools, :DocTestSetup, :(using OptimalTransportTools); recursive=true)

makedocs(;
modules=[WassersteinDictionaries],
modules=[OptimalTransportTools],
authors="Tobias M. Blickhan, Michael Kraus",
repo="https://github.com/JuliaRCM/WassersteinDictionaries.jl/blob/{commit}{path}#{line}",
sitename="WassersteinDictionaries.jl",
repo="https://github.com/JuliaRCM/OptimalTransportTools.jl/blob/{commit}{path}#{line}",
sitename="OptimalTransportTools.jl",
format=Documenter.HTML(;
prettyurls=get(ENV, "CI", "false") == "true",
canonical="https://JuliaRCM.github.io/WassersteinDictionaries.jl",
canonical="https://JuliaRCM.github.io/OptimalTransportTools.jl",
assets=String[],
),
pages=[
Expand All @@ -19,6 +19,6 @@ makedocs(;
)

deploydocs(;
repo="github.com/JuliaRCM/WassersteinDictionaries.jl",
repo="github.com/JuliaRCM/OptimalTransportTools.jl",
devbranch="main",
)
8 changes: 4 additions & 4 deletions docs/src/index.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
```@meta
CurrentModule = WassersteinDictionaries
CurrentModule = OptimalTransportTools
```

# WassersteinDictionaries
# OptimalTransportTools

Documentation for [WassersteinDictionaries](https://github.com/JuliaRCM/WassersteinDictionaries.jl).
Documentation for [OptimalTransportTools](https://github.com/JuliaRCM/OptimalTransportTools.jl).

```@index
```

```@autodocs
Modules = [WassersteinDictionaries]
Modules = [OptimalTransportTools]
```
2 changes: 1 addition & 1 deletion src/sinkhorn_separated.jl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ end


"""
wasserstein_distance_separated(p, β, a₀, b₀, d₁₀, d₂₀, k, SP, caches)
sinkhorn_dvg_sep(p, β, a₀, b₀, d₁₀, d₂₀, k, SP, caches)
p: right marginal as nxn matrix
β: left marginal as nxn matrix
k: e^(c/ε) with cost c as dx(nxn) vector of matrices
Expand Down

0 comments on commit 6b78ae0

Please sign in to comment.