Copyright Sanfilipo -> Redis Ltd.

This commit is contained in:
antirez 2025-03-14 23:06:22 +01:00
parent d996eb82ef
commit 13a0a63bef
5 changed files with 9 additions and 6 deletions

3
expr.c
View File

@ -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 <stdio.h>

3
hnsw.c
View File

@ -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

2
hnsw.h
View File

@ -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

4
vset.c
View File

@ -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

3
w2v.c
View File

@ -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 <stdio.h>