about summary refs log tree commit diff
path: root/forces/forces.go
diff options
context:
space:
mode:
Diffstat (limited to 'forces/forces.go')
-rw-r--r--forces/forces.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/forces/forces.go b/forces/forces.go
index e204e39..d39d7fd 100644
--- a/forces/forces.go
+++ b/forces/forces.go
@@ -108,9 +108,6 @@ func CalcAllForces(starSlice []structs.Star, threads int) []structs.Star {
 		go forcesThread(starSlice, localRangeStart, localRangeEnd, channel)
 	}
 
-	fmt.Printf("\nsliceLength = %d\n", sliceLength)
-	fmt.Printf("localRangeLen = %d\n", localRangeLen)
-
 	// Handle errors (10004 stars, but 1250 stars per thread, so 4 stars are not calculate and block the queue)
 	if sliceLength > localRangeLen {
 
@@ -123,7 +120,6 @@ func CalcAllForces(starSlice []structs.Star, threads int) []structs.Star {
 	}
 
 	// Initialize a new progress bar
-	fmt.Printf("len(starSlice) = %d", len(starSlice))
 	bar := pb.New(len(starSlice)).Prefix("Stars: ")
 
 	bar.Start()