From 2bc367ff1b91d8e2ccfb88754bb998654f8af069 Mon Sep 17 00:00:00 2001
From: Mathis Randl <mathis.randl@epfl.ch>
Date: Thu, 6 Mar 2025 16:55:35 +0100
Subject: [PATCH] bounded module in core

---
 bindings/src/api.rs | 4 ++--
 core/src/main.rs    | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/bindings/src/api.rs b/bindings/src/api.rs
index 5386e0e..1685bd5 100644
--- a/bindings/src/api.rs
+++ b/bindings/src/api.rs
@@ -1,8 +1,8 @@
 use std::hash::{Hash, Hasher};
 
 use proximipy::caching::approximate_cache::ApproximateCache;
-use proximipy::caching::bounded::fifo::fifo_cache::FifoCache as FifoInternal;
-use proximipy::caching::bounded::lru::lru_cache::LRUCache as LruInternal;
+use proximipy::caching::fifo::fifo_cache::FifoCache as FifoInternal;
+use proximipy::caching::lru::lru_cache::LRUCache as LruInternal;
 use proximipy::numerics::comp::ApproxComparable;
 use proximipy::numerics::f32vector::F32Vector;
 
diff --git a/core/src/main.rs b/core/src/main.rs
index 03776d8..e8d0507 100644
--- a/core/src/main.rs
+++ b/core/src/main.rs
@@ -4,7 +4,7 @@
 use std::path::Path;
 
 use caching::approximate_cache::ApproximateCache;
-use caching::bounded::lru::lru_cache::LRUCache;
+use caching::lru::lru_cache::LRUCache;
 use fs::file_manager;
 use numerics::f32vector::F32Vector;
 use std::fs::File;
-- 
GitLab