Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to have arbitrary observational equations involving java types #71

Open
Sinha-Ujjawal opened this issue Sep 1, 2021 · 0 comments
Open

Comments

@Sinha-Ujjawal
Copy link

Hi, I have a requirement where I need observation_equations involving java types. How can I possibly do that?

typeside Ty = literal {
	external_types
		Int -> "java.lang.Integer"
	
	external_parsers
		Int -> "parseInt"

	external_functions
	 	min : Int, Int -> Int = "(x, y) => x < y ? x : y"
}

schema C = literal : Ty {
	entity
		A

	foreign_keys

	path_equations

	attributes
		x : A -> Int
		y : A -> Int

	observation_equations
		forall a. a.x = min(a.x, a.y) # I just want to check a.x < a.y. How can I do that?
}

So in this simplified example, I want to enforce that all instances of schema C should fulfil the constraint that forall a. a.x < a.y. Is there a way to implement this?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant