From 13a0a63befc20fb3f01db1730c0598fc4318b726 Mon Sep 17 00:00:00 2001 From: antirez Date: Fri, 14 Mar 2025 23:06:22 +0100 Subject: [PATCH] Copyright Sanfilipo -> Redis Ltd. --- expr.c | 3 ++- hnsw.c | 3 ++- hnsw.h | 2 +- vset.c | 4 ++-- w2v.c | 3 ++- 5 files changed, 9 insertions(+), 6 deletions(-) diff --git a/expr.c b/expr.c index 157539d32..d9712921e 100644 --- a/expr.c +++ b/expr.c @@ -3,7 +3,8 @@ * general code to be used when we want to tell if a given object (with fields) * passes or fails a given test for scalars, strings, ... * - * Copyright(C) 2024-2025 Salvatore Sanfilippo. All Rights Reserved. + * Copyright(C) 2024-Present, Redis Ltd. All Rights Reserved. + * Originally authored by: Salvatore Sanfilippo. */ #include diff --git a/hnsw.c b/hnsw.c index bd5d55036..2e0323c73 100644 --- a/hnsw.c +++ b/hnsw.c @@ -25,7 +25,8 @@ * bidirectional), and reliking the nodes orphaned of one link among * them. * - * Copyright(C) 2024-2025 Salvatore Sanfilippo. All Rights Reserved. + * Copyright(C) 2024-Present, Redis Ltd. All Rights Reserved. + * Originally authored by: Salvatore Sanfilippo. */ #define _DEFAULT_SOURCE diff --git a/hnsw.h b/hnsw.h index dc94f4cec..69c3153b3 100644 --- a/hnsw.h +++ b/hnsw.h @@ -2,7 +2,7 @@ * HNSW (Hierarchical Navigable Small World) Implementation * Based on the paper by Yu. A. Malkov, D. A. Yashunin * - * Copyright(C) 2024 Salvatore Sanfilippo. All Rights Reserved. + * Copyright(C) 2024-Pesent Redis Ltd. All Rights Reserved. */ #ifndef HNSW_H diff --git a/vset.c b/vset.c index 0b1de2da2..4a0e8f4de 100644 --- a/vset.c +++ b/vset.c @@ -1,8 +1,8 @@ /* Redis implementation for vector sets. The data structure itself * is implemented in hnsw.c. * - * Copyright(C) 2024 Salvatore Sanfilippo. - * All Rights Reserved. + * Copyright(C) 2024-Present, Redis Ltd. All Rights Reserved. + * Originally authored by: Salvatore Sanfilippo. */ #define _DEFAULT_SOURCE diff --git a/w2v.c b/w2v.c index f4caa4ba5..33166d221 100644 --- a/w2v.c +++ b/w2v.c @@ -2,7 +2,8 @@ * HNSW (Hierarchical Navigable Small World) Implementation * Based on the paper by Yu. A. Malkov, D. A. Yashunin * - * Copyright(C) 2024 Salvatore Sanfilippo. All Rights Reserved. + * Copyright(C) 2024-Present, Redis Ltd. All Rights Reserved. + * Originally authored by: Salvatore Sanfilippo. */ #include