From e29c923723ddb436252d0aa25a31ffdcfa668d36 Mon Sep 17 00:00:00 2001 From: Karthik Chandrashekara Date: Thu, 19 Aug 2021 12:41:11 +0200 Subject: [PATCH] Changed max limit of the number of atoms/trajectories to be computed from 20000 to 50000. --- +Simulator/@MOTCaptureProcess/MOTCaptureProcess.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/+Simulator/@MOTCaptureProcess/MOTCaptureProcess.m b/+Simulator/@MOTCaptureProcess/MOTCaptureProcess.m index c7af89d..911d39b 100644 --- a/+Simulator/@MOTCaptureProcess/MOTCaptureProcess.m +++ b/+Simulator/@MOTCaptureProcess/MOTCaptureProcess.m @@ -108,7 +108,7 @@ classdef MOTCaptureProcess < handle & matlab.mixin.Copyable ret = this.SimulationTime; end function set.NumberOfAtoms(this, val) - assert(val <= 20000, 'Not time efficient to compute for atom numbers larger than 20,000!'); + assert(val <= 50000, '!!Not time efficient to compute for atom numbers larger than 50,000!!'); this.NumberOfAtoms = val; end function ret = get.NumberOfAtoms(this)