Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6021071
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T03:39:33+00:00 2026-05-23T03:39:33+00:00

I’m currently working with HperGraphDB 1.1 under Java SE 1.6. I stored 3 atoms

  • 0

I’m currently working with HperGraphDB 1.1 under Java SE 1.6.

I stored 3 atoms in the graph and created multiple links between them.
When I traverse the graph using the DefaultALGenerator the hypergraph returns for each atom linked to my start atom only 1 link. I think this comes from the implementation of the DefaultALGenerator since it marks already visited atoms so they won’t be visited again using another link.

Is there a way to retrieve all links between 2 atoms or have I to store the atom(or maybe another link to the same atom) multiple times under different handles?

Edit:

public class MyAtom { ... }
public class MyLink extends HGPlainLink { ... }

// initialisation somewhere else
HyperGraph hg = ...

// Create some atoms
MyAtom a = new MyAtom();
MyAtom b = new MyAtom();
MyAtom c = new MyAtom();

// Store the atoms
HGHandle handleA = hg.add(a);
HGHandle handleB = hg.add(b);
HGHandle handleC = hg.add(c);

// Create some links with additional information
hg.add(new MyLink(handleA, handleB, "First directed link from A to B"));
hg.add(new MyLink(handleA, handleB, "Second directed link from A to B"));

hg.add(new MyLink(handleB, handleC, "First directed link from B to C"));
hg.add(new MyLink(handleB, handleC, "Second directed link from B to C"));

// Traverse the graph
// I want to get all paths starting at A and ending in C
DefaultALGenerator alGen = new DefaultALGenerator(
                         hg, /* The graph */
                         null, /* No link predicate */
                         null, /* No atom predicate */
                         true, /* Traverse preceeding */
                         false, /* Don't traverse succeeding */
                         false); /* Use normal order */

HGDepthFirstTraversal traversal = new HGDepthFirstTraversal(
                                    handleC,    alGen);

while (traversal.hasNext()) {
    Pair current = traversal.next();

    HGLink l = (HGLink) hg.get((HGHandle) current.getFirst());
    Object atom = hg.get((HGHandle) current.getSecond());
    System.out.println(l + " -> " + atom);
}

I want to get all paths, considering the direction of the links, that start at A and end in C.
I ordered the atoms in the link so that the last atom is the one the link is pointing to. Therefore I use the DefaultALGenerator to consider the direction of the links.

Best regards

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-23T03:39:34+00:00Added an answer on May 23, 2026 at 3:39 am

    You probably should post some code, and a clearer description of what you’re trying to do, since what you seem to be describing doesn’t seem fully consistent with how DefaultALGenerator should work. But regardless, SimpleALGenerator may be a better fit for what you’re trying to do – have you tried that?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want use html5's new tag to play a wav file (currently only supported
I am currently running into a problem where an element is coming back from
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I have a JSP page retrieving data and when single or double quotes are
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
this is what i have right now Drawing an RSS feed into the php,
I'm trying to decode HTML entries from here NYTimes.com and I cannot figure out
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I have just tried to save a simple *.rtf file with some websites and

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.