< Summary

Class:ISizeAndRadiusConstrainedClusterer
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Algorithms/Clustering/Clusterer.cs
Covered lines:6
Uncovered lines:4
Coverable lines:10
Total lines:56
Line coverage:60% (6 of 10)
Covered branches:0
Total branches:0
Covered methods:2
Total methods:2
Method coverage:100% (2 of 2)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
ISizeAndRadiusConstrainedClusterer(...)0%110100%
ISizeAndRadiusConstrainedClusterer(...)0%2100%

File(s)

/github/workspace/Assets/Scripts/Algorithms/Clustering/Clusterer.cs

#LineLine coverage
 1using System.Collections;
 2using System.Collections.Generic;
 3using System.Linq;
 4using UnityEngine;
 5
 6// The clusterer class is an interface for clustering algorithms.
 7public abstract class IClusterer {
 8  // List of game objects to cluster.
 9  protected List<GameObject> _objects = new List<GameObject>();
 10
 11  // List of clusters.
 12  protected List<Cluster> _clusters = new List<Cluster>();
 13
 14  public IClusterer(List<GameObject> objects) {
 15    _objects = objects;
 16  }
 17  public IClusterer(List<Agent> agents) {
 18    _objects = agents.ConvertAll(agent => agent.gameObject).ToList();
 19  }
 20
 21  // Get the list of game objects.
 22  public IReadOnlyList<GameObject> Objects {
 23    get { return _objects; }
 24  }
 25
 26  // Get the list of clusters.
 27  public IReadOnlyList<Cluster> Clusters {
 28    get { return _clusters; }
 29  }
 30
 31  // Cluster the game objects.
 32  public abstract void Cluster();
 33}
 34
 35// The size and radius-constrained clusterer class is an interface for clustering algorithms with
 36// size and radius constraints. The size is defined as the maximum number of game objects within a
 37// cluster, and the radius denotes the maximum distance from the cluster's centroid to any of its
 38// assigned game objects.
 39public abstract class ISizeAndRadiusConstrainedClusterer : IClusterer {
 40  // Maximum cluster size.
 841  protected readonly int _maxSize = 0;
 42
 43  // Maximum cluster radius.
 844  protected readonly float _maxRadius = 0;
 45
 46  public ISizeAndRadiusConstrainedClusterer(List<GameObject> objects, int maxSize, float maxRadius)
 1647      : base(objects) {
 848    _maxSize = maxSize;
 849    _maxRadius = maxRadius;
 850  }
 51  public ISizeAndRadiusConstrainedClusterer(List<Agent> agents, int maxSize, float maxRadius)
 052      : base(agents) {
 053    _maxSize = maxSize;
 054    _maxRadius = maxRadius;
 055  }
 56}