Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • 505fc29
  • /
  • src
  • /
  • Singularity.cpp
Raw File Download

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge
swh:1:cnt:06384a9a2fc27299abecd2ccdb2ea9fcb10fc302
directory badge
swh:1:dir:6b077e51a4e0137699fb0df51458390d621719a6

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
(requires biblatex-software package)
Generating citation ...
(requires biblatex-software package)
Generating citation ...
Singularity.cpp
#include "Singularity.h"

const std::vector<HEMesh::HalfedgeHandle>& MetaSingularity::GetEmanatingMotorcycle(int orientation) const
{
	return emanatingMotorcycles[orientation].first;
}

std::vector<HEMesh::HalfedgeHandle>& MetaSingularity::GetEmanatingMotorcycle(int orientation)
{
	if (orientation >= emanatingMotorcycles.size())
		emanatingMotorcycles.resize(orientation + 1);
	return emanatingMotorcycles[orientation].first;
}

void MetaSingularity::SetEmanatingMotorcycleActive(int orientation, bool active)
{
	emanatingMotorcycles[orientation].second = active;
}

bool MetaSingularity::GetEmanatingMotorcycleActive(int orientation) const
{
	return emanatingMotorcycles[orientation].second;
}

size_t MetaSingularity::FindOutgoingMotorcycle(HEMesh::HalfedgeHandle h) const
{
	for (int i = 0; i < emanatingMotorcycles.size(); ++i)
		if (!emanatingMotorcycles[i].first.empty() && emanatingMotorcycles[i].first.front() == h)
			return i;
	return (size_t)-1;
}

size_t MetaSingularity::Degree() const
{
	return emanatingMotorcycles.size();
}

void MetaSingularity::AddMotorcycle(HEMesh::HalfedgeHandle direction, bool active)
{
	emanatingMotorcycles.emplace_back();
	emanatingMotorcycles.back().first.push_back(direction);
	emanatingMotorcycles.back().second = active;
}

void MetaSingularity::AddEmptyMotorcycle()
{
	emanatingMotorcycles.emplace_back();
}

void MetaSingularity::AddMotorcycleAtFront(HEMesh::HalfedgeHandle direction, bool active)
{
	emanatingMotorcycles.emplace(emanatingMotorcycles.begin());
	emanatingMotorcycles.front().first.push_back(direction);
	emanatingMotorcycles.front().second = active;
}

back to top

Software Heritage — Copyright (C) 2015–2026, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Content policy— Contact— JavaScript license information— Web API