Code Monkey home page Code Monkey logo

Comments (5)

AlexandreDecan avatar AlexandreDecan commented on June 6, 2024 1

Discrete domains are implicitly supported, but not for numbers, since we cannot (always) distinguish between floats and integers (i.e. given [1, 2], does this correspond to integers or real numbers?). For instance, portion works very well with characters, dates, versions (the use case that made me developing this library), etc.

However, if the general definition of "length of an interval" for real numbers is the one you provided, I expect that anyone needing to compute the length of an interval will implement the corresponding function by herself on top of portion. I think it's not a good idea to "break the generalizability" of portion for such a simple function (a potential one-liner would be sum((x.upper - x.lower for x in interval)).

from portion.

hthayko avatar hthayko commented on June 6, 2024

smth like:

def intervalSize(p):
	ret = 0
	for i in p:
		ret += i.upper - i.lower
	return ret

from portion.

AlexandreDecan avatar AlexandreDecan commented on June 6, 2024

I understand that this would be a nice, simple feature to add to portion. However, it assumes that objects being used as bounds of an interval can be subtracted, which is not an assumption that holds in all possible cases. Therefore, I'm afraid I cannot add this to portion.

Also, I do not agree that P.open(1, 2).size() should return 1 :-) For integers, it should be 0, and for floats, it should be the highest possible float whose value is strictly less than 1.

from portion.

hthayko avatar hthayko commented on June 6, 2024

Quoting documentation: "Note that discrete intervals are not supported by portion" so I assume the numbered intervals represent sets of real numbers, in which case, the length of an interval is defined as upper - lower, no matter if the ends are open or closed.

Re subtraction being a prerequisite: I agree, it breaks the consistency, but imho the most use cases of portion will be dealing with numbers, and the benefit of having this nice function will make it worth it.

from portion.

AlexandreDecan avatar AlexandreDecan commented on June 6, 2024

I close this issue, but I'll definitely keep the idea in mind for a potential next major release of portion (I'm currently thinking of allowing to create "specialized"/typed intervals in complement to the generic ones, allowing users to provide custom domains/comparisons/operations/infinities).

from portion.

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.