Git Product home page Git Product logo

Comments (3)

lemire avatar lemire commented on May 27, 2024

We need a reproducible test case. The current report is incomplete and cannot be investigated.

I am going to close this. Please open a new bug report with an example of the issue you have outlined. The example should be reproducible.

from roaringbitmap.

lemire avatar lemire commented on May 27, 2024

Please be aware that it is most likely that the bug is in your own code. You need to do enough investigation to provide strong evidence that the bug is in our library.

If you have done this work, then you should be able to provide us with enough information so that we can reproduce the issue.

We are not magicians: if we cannot verify that there is an issue, then we have no hope of fixing it.

from roaringbitmap.

shencangsheng avatar shencangsheng commented on May 27, 2024

@lemire
Okay, I'll give you the duplicate code

import com.fasterxml.jackson.databind.ObjectMapper;
import org.roaringbitmap.RoaringBitmap;

import java.io.File;
import java.io.IOException;

/**
 * <br>
 * 〈〉
 *
 * @author shencangsheng
 * @create 2023/7/24
 */
public class Main {
    public static void main(String[] args) throws IOException {
        ObjectMapper objectMapper = new ObjectMapper();
        RoaringBitmap s1 = RoaringBitmap.bitmapOf(objectMapper.readValue(new File("/tmp/s1.json"), int[].class));
        RoaringBitmap s2 = RoaringBitmap.bitmapOf(objectMapper.readValue(new File("/tmp/s2.json"), int[].class));
        System.out.println(RoaringBitmap.andNotCardinality(s1, s2));
        System.out.println(RoaringBitmap.andNot(s1, s2).getCardinality());
    }
}

This is the output

image

This is the input file

input.zip

from roaringbitmap.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.