From a77b2fd78f3776176ac78db5b7367828a82337b6 Mon Sep 17 00:00:00 2001
From: Quaternions <krakow20@gmail.com>
Date: Thu, 6 Feb 2025 13:43:28 -0800
Subject: [PATCH] nondeterminism warning

---
 lib/common/src/bvh.rs | 1 +
 1 file changed, 1 insertion(+)

diff --git a/lib/common/src/bvh.rs b/lib/common/src/bvh.rs
index fbabf08..18dda2f 100644
--- a/lib/common/src/bvh.rs
+++ b/lib/common/src/bvh.rs
@@ -112,6 +112,7 @@ impl<L> BvhNode<L>{
 			Ratio<Planar64,Planar64>:From<T>,
 			F:Fn(&L,&Ray)->Option<T>,
 	{
+		// source of nondeterminism when Aabb boundaries are coplanar
 		let mut nodes=BTreeMap::new();
 
 		let start_time=start_time.into();