From 1a00fa2f86ba943fdddce00972b7db36ff7da292 Mon Sep 17 00:00:00 2001 From: Lucas ONDEL YANG <lucas.ondel@cnrs.fr> Date: Wed, 8 Feb 2023 15:41:10 +0100 Subject: [PATCH] renamed pacakge --- Project.toml | 2 +- src/{FSALinalg.jl => FiniteStateAutomata.jl} | 2 +- src/ops.jl | 2 +- test/runtests.jl | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) rename src/{FSALinalg.jl => FiniteStateAutomata.jl} (95%) diff --git a/Project.toml b/Project.toml index 0e6cb00..26af7c6 100644 --- a/Project.toml +++ b/Project.toml @@ -1,4 +1,4 @@ -name = "FSALinalg" +name = "FiniteStateAutomata" uuid = "fc9063f0-9721-496a-abcf-7f8e825377b5" authors = ["Lucas ONDEL YANG <lucas.ondel@cnrs.fr"] version = "0.1.0" diff --git a/src/FSALinalg.jl b/src/FiniteStateAutomata.jl similarity index 95% rename from src/FSALinalg.jl rename to src/FiniteStateAutomata.jl index 2d13c8f..02dfe84 100644 --- a/src/FSALinalg.jl +++ b/src/FiniteStateAutomata.jl @@ -1,6 +1,6 @@ # SPDX-License-Identifier: CECILL-2.1 -module FSALinalg +module FiniteStateAutomata using LinearAlgebra using SparseArrays diff --git a/src/ops.jl b/src/ops.jl index b26823d..cbe9522 100644 --- a/src/ops.jl +++ b/src/ops.jl @@ -135,7 +135,7 @@ weights of the merged paths are simply added and locally renormalized. Therefore, the resulting FSA may have different weighting than the original FSA. """ -function determinize(A::FSALinalg.AbstractFSA{K,L}) where {K,L} +function determinize(A::AbstractFSA{K,L}) where {K,L} C = _spmap(K, λ(A)) # Edges of the determinized FSA. diff --git a/test/runtests.jl b/test/runtests.jl index de85aad..77a6e42 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -1,4 +1,4 @@ -using FSALinalg +using FiniteStateAutomata using Semirings using SparseArrays using Test -- GitLab