< Summary

Class:IClusterer
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:3
Total methods:4
Method coverage:75% (3 of 4)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
IClusterer(...)0%2100%
IClusterer(...)0%220100%

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.
 109  protected List<GameObject> _objects = new List<GameObject>();
 10
 11  // List of clusters.
 1012  protected List<Cluster> _clusters = new List<Cluster>();
 13
 014  public IClusterer(List<GameObject> objects) {
 015    _objects = objects;
 016  }
 2017  public IClusterer(List<Agent> agents) {
 76518    _objects = agents.ConvertAll(agent => agent.gameObject).ToList();
 1019  }
 20
 21  // Get the list of game objects.
 22  public IReadOnlyList<GameObject> Objects {
 023    get { return _objects; }
 24  }
 25
 26  // Get the list of clusters.
 27  public IReadOnlyList<Cluster> Clusters {
 3028    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.
 41  protected readonly int _maxSize = 0;
 42
 43  // Maximum cluster radius.
 44  protected readonly float _maxRadius = 0;
 45
 46  public ISizeAndRadiusConstrainedClusterer(List<GameObject> objects, int maxSize, float maxRadius)
 47      : base(objects) {
 48    _maxSize = maxSize;
 49    _maxRadius = maxRadius;
 50  }
 51  public ISizeAndRadiusConstrainedClusterer(List<Agent> agents, int maxSize, float maxRadius)
 52      : base(agents) {
 53    _maxSize = maxSize;
 54    _maxRadius = maxRadius;
 55  }
 56}