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

Revision 17193af3d657126f5c300216137fefe4ec9e1f78 authored by Max Göttlicher on 16 August 2022, 13:10:20 UTC, committed by Max Göttlicher on 16 August 2022, 13:10:20 UTC
improved rangom cactus generator
1 parent 3c6f7c5
  • Files
  • Changes
  • 1615c3d
  • /
  • random_trees.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.

  • revision
  • directory
  • content
revision badge
swh:1:rev:17193af3d657126f5c300216137fefe4ec9e1f78
directory badge Iframe embedding
swh:1:dir:1615c3d2c945b64ffa52b8d4f99c421fd6e31eea
content badge Iframe embedding
swh:1:cnt:369771985e47b1a5a6b5af7181e775b6828ce646

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.

  • revision
  • directory
  • content
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
random_trees.cpp
//
// Created by max on 15.08.22.
//

#include <setgraph/graph.hpp>
#include <setgraph/boost_adapter.hpp>
#include <boost/property_map/property_map.hpp>
#include <boost/property_map/dynamic_property_map.hpp>
#include <range/v3/all.hpp>
#include <boost/graph/graphml.hpp>

#include <boost/program_options.hpp>

#include <fmt/format.h>

using Graph = setgraph::SetGraph<setgraph::Empty, setgraph::Empty, setgraph::EdgeDirection::Undirected>;
using Vertex = Graph::vertex_descriptor;

template<std::uniform_random_bit_generator Rng = std::minstd_rand>
Graph randomTree(size_t n, Rng rng = Rng()) {
    Graph graph;
    if (n == 0) { return graph; }
    std::vector<Vertex> graphVertices;
    graphVertices.push_back(graph.addVertex());
    for (size_t x = 1; x < n; ++x) {
        auto u = graphVertices[std::uniform_int_distribution(size_t{0}, graphVertices.size() - 1)(rng)];
        auto v = graph.template addVertex();
        graphVertices.push_back(v);
        graph.addEdge(u, v);
    }
    return graph;
}

template<typename L, typename R>
bool intersects(const L& lhs, const R& rhs) {
    if (lhs.size() < rhs.size()) {
        intersects(rhs, lhs);
    } else {
        for (auto x: rhs) {
            if (lhs.contains(x)) return true;
        }
    }
    return false;
}

void dfs(const Graph& graph, Vertex start, setgraph::map<Vertex, Vertex>& parent, setgraph::map<Vertex, size_t>& distance) {
    if (!parent.contains(start)) {
        parent[start] = start;
        distance[start] = 0;
    }
    for (auto w: graph.neighbors(start)) {
        if (!parent.contains(w)) {
            parent[w] = start;
            distance[w] = distance[start] + 1;
            dfs(graph, w, parent, distance);
        }
    }
}

std::optional<Vertex> lowestCommonAncestor(Vertex first, Vertex second, const setgraph::map<Vertex, Vertex>& parent, const setgraph::map<Vertex, size_t>& distance) {
    while (first != second) {
        if (parent.at(first) == first && parent.at(second) == second) return {};
        if ((distance.at(first) < distance.at(second) && parent.at(second) != second) || parent.at(first) == first) {
            second = parent.at(second);
        } else {
            first = parent.at(first);
        }
    }
    return first;
}

template<std::uniform_random_bit_generator Rng = std::minstd_rand>
Graph randomCactus(size_t n, Rng rng = Rng()) {
    Graph graph;
    if (n == 0) { return graph; }
    std::vector<Vertex> graphVertices;
    std::set<Vertex> blocks;
    graphVertices.push_back(graph.addVertex());
    n -= 1;
    while (n > 0)  {
        auto u = graphVertices[std::uniform_int_distribution(size_t{0}, graphVertices.size() - 1)(rng)];
        auto v = graph.template addVertex();
        graphVertices.push_back(v);
        graph.addEdge(u, v);
        if (!blocks.contains(u)) {
            blocks.insert(v);
        } else {
            --n;
        }
    }
    for (auto v: blocks) {
        auto neighbors = graph.neighbors(v) | ranges::to<std::vector>();
        graph.removeVertex(v);
        ranges::shuffle(neighbors, rng);
        auto d = neighbors.size();
        for (size_t i = 0; i < neighbors.size(); ++i) {
            graph.addEdge(neighbors[i], neighbors[(i+1) % d]);
        }
    }
    return graph;
}

//Graph randomCactus(size_t n, double p = 0.1) {
//    auto graph = randomTree(n);
//    if (n == 0) return graph;
//    setgraph::map<Graph::vertex_descriptor, setgraph::set<size_t>> onCycle;
//    std::minstd_rand rng;
//    const auto N = graph.numVertices();
//    std::uniform_int_distribution endpoint(size_t{0}, N - 1);
//    auto vertices = graph.vertices() | ranges::to<std::vector>();
//    setgraph::map<Vertex, Vertex> parent;
//    setgraph::map<Vertex, size_t> distance;
//    dfs(graph, vertices.front(), parent, distance);
//    size_t cycle = 1;
//    for (size_t i = 0; i < static_cast<size_t>(N * p); ++i) {
//        auto u = endpoint(rng);
//        auto v = endpoint(rng);
//        auto x = vertices[u];
//        auto y = vertices[v];
//        if (!intersects(onCycle[x], onCycle[y])) {
//            auto lca = lowestCommonAncestor(x, y, parent, distance).value();
//            graph.addEdge(x, y);
//            while (x != lca) {
//                onCycle[x].insert(cycle);
//                x = parent[x];
//            }
//            while (y != lca) {
//                onCycle[y].insert(cycle);
//                y = parent[y];
//            }
//            onCycle[lca].insert(cycle);
//            ++cycle;
//        }
//    }
//    return graph;
//}

namespace po = boost::program_options;

void writeGraph(const Graph& graph, std::ostream& out) {
    setgraph::map<Vertex, long> zeroInjection;
    for (auto v: graph.vertices()) {
        zeroInjection[v] = 1;
    }
    boost::associative_property_map ziMap(zeroInjection);
    boost::dynamic_properties properties(boost::ignore_other_properties);
    properties.property("zero_injection", ziMap);
    setgraph::map<Vertex, size_t> vertexIndex;
    for (size_t i = 0; auto v: graph.vertices()) {
        vertexIndex.insert({v, i});
        ++i;
    }
    boost::write_graphml(out, graph, boost::associative_property_map(vertexIndex), properties);
}

int main(int argc, char** argv) {
    po::options_description desc("options");
    std::string graphType;
    std::string outFile;
    size_t n = 0;
    desc.add_options()
            ("help,h", "show this help")
            ("type,t", po::value(&graphType)->default_value("tree"), "graph type")
            ("size,n", po::value(&n)->default_value(100), "number of vertices")
            ("seed,s", po::value<size_t>(), "random seed")
            ("out,o", po::value(&outFile)->default_value("-"), "out file name")
            ;
    po::positional_options_description positional;
    positional.add("size", -1);
    po::variables_map vm;
    po::store(po::command_line_parser(argc, argv).options(desc).positional(positional).run(), vm);
    po::notify(vm);
    if (vm.count("help")) {
        std::cout << desc << std::endl;
        return 1;
    }

    using Graph = setgraph::SetGraph<setgraph::Empty, setgraph::Empty, setgraph::EdgeDirection::Undirected>;
    using Vertex = Graph::vertex_descriptor;
    Graph graph;
    std::minstd_rand rng(vm.count("seed") ? vm["seed"].as<size_t>() : size_t{std::random_device()()});
    if (graphType == "tree") { graph = randomTree(n, rng);}
    else if (graphType == "cactus") { graph = randomCactus(n, rng); }

    std::optional<std::ofstream> outStream;
    if (outFile != "-") {
        outStream.emplace(std::ofstream(outFile));
    }
    writeGraph(graph, outStream.has_value() ? outStream.value() : std::cout);
}
The diff you're trying to view is too large. Only the first 1000 changed files have been loaded.
Showing with 0 additions and 0 deletions (0 / 0 diffs computed)
swh spinner

Computing file changes ...

back to top

Software Heritage — Copyright (C) 2015–2025, 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