Questions tagged [deterministic]

The system or program exhibits the same behavior in different runs.

The system or program exhibits the same behavior on different runs. This is opposed to .

353 questions
0
votes
0 answers

Montecarlo simulation for forecasting loan portfolio growth

I have to forecast the future gold loan portfolio growth of a financial firm. I have past 36 month growth. I am planning to use montecarlo simulation to forecast but growth is a deterministic process not a random process. How can I apply montecarlo…
Peter
  • 31
  • 2
0
votes
1 answer

Is there a way to configure OneLogin apps from the catalog using their API?

I'd like to ensure that my OneLogin configuration state is versioned and recreatable. As such, programmatic capability of configuring apps would be invaluable. Searching through their API docs, I did not find any way to do this. Using the webview…
Master_Yoda
  • 1,092
  • 2
  • 10
  • 18
0
votes
0 answers

Retrieve application name parameter without APP_NAME() due it's a non-deterministic function

Is it possible to retrieve the application name connection parameter without using APP_NAME() because I've to use in a view sql and I can't create an index due APP_Name() it's a non-deterministic function
0
votes
3 answers

Is (first ) deterministic?

Given two (unordered) identical sets, is (first ) guaranteed to always return the same element? If this is documented somewhere, where is it? Why I care The main reason I want this right at the moment is for searching graphs that are produced…
Ben Kovitz
  • 4,920
  • 1
  • 22
  • 50
0
votes
1 answer

Performance for selecting multiple out-params from deterministic SUDF

I am about to test the deterministic flag for SUDFs that return multiple values (follow up question to this). The DETERMINISTIC flag should cache the results for same inputs to improve performance. However, I can't figure out how to do this for…
Jan
  • 59
  • 8
0
votes
1 answer

Deterministic and stochastic curves on the same plot in MATLAB using SimBiology Desktop

Can someone instruct me how to produce a plot consisting of number of stochastic curves combined with deterministic curve for the same set of chemical reactions only by using particular icons (tabs) in simbiology? I know how to draw deterministic…
0
votes
1 answer

Determinisitic Compute Shader For Simplex Noise In Unity

So I have been trying to use the power of compute shaders to speed up the process of generating simplex noise for my map terrain generation in unity. The problem is that for the game to work it requires everything to be deterministic in order to…
0
votes
1 answer

Computed column as a fulltext index with formatted datetime

I have the following table: [dbo].[TableName] ( [created] datetime not null, [modified] datetime null, [computedValue] as ( format([created], 'yyy-MM-dd MM/dd/yyy') + case when ([modified] is not null) then …
Lubudubu1010
  • 189
  • 4
  • 15
0
votes
1 answer

Convert to a deterministic function with SQL Server

I am trying to create a deterministic function with SQL Server so that I can create an index for a view, which calls this function. This function takes a column name and returns the end of the month as datetime. For example, 201701 to 20170131. Can…
E.K.
  • 4,179
  • 8
  • 30
  • 50
0
votes
2 answers

How can I make DFA of the following condition?

Please help me to make the DFA of the following condition: L = { w: na(w) mod 3 > nb(w) mod 3 }, where na(w) represents the number of occurrences of a in w and nb(w) represents the number of occurrences of b in w.
0
votes
3 answers

Regular expression for checking every substring

I had this question in my end semester exam, unfortunately I couldn't solve it and tried it for several days and no luck. Condition- For every substring of length 4 in a string of length n, write a RE to force the rule- there must be exactly three…
0
votes
2 answers

How to decide if randomised algorithm is OK to use?

From what I understand, randomised algorithm could give wrong answer.For example, using contraction algorithm to solve graph min-cut problem, you need to run the algorithm n^2*ln(n) times so that the possibility of failing to get the correct answer…
user1532146
  • 184
  • 2
  • 14
0
votes
1 answer

Construct a regular expression to match the following language

I am working on a thinking exercise handed out by my professor at the end of a lecture. The problem is to construct a DFA given a specific language definition. Before I construct the DFA, the first thinking exercise is to convert the language…
JavascriptLoser
  • 1,853
  • 5
  • 34
  • 61
0
votes
0 answers

Do temporary tables make functions non deterministic in MySQL

I want to create a stored function in MySQL. I've been granted ALL PRIVILEGES, what I think contains also the required SUPER privilege. And binary logging is enabled. While creating a function I get the 1419 error: Error Code: 1419. You do not have…
Phoen
  • 257
  • 3
  • 16
0
votes
1 answer

Are these two methods deterministic?

Are these two C# methods completely deterministic - as in they produce same result across all platforms? Fix64 is struct that has rawValue field of type long. ONE is a constant defined like this const long ONE = 1L << 32; Function 1: public static…
zigzag
  • 579
  • 5
  • 17