Skip to content

Commit

Permalink
copyright + formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
csanadtelbisz committed Nov 1, 2023
1 parent 06b45c7 commit fd8ab34
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
/*
* Copyright 2023 Budapest University of Technology and Economics
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package hu.bme.mit.theta.frontend.transformation.grammar.expression;

import hu.bme.mit.theta.core.model.Valuation;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,8 @@ class XcfaCli(private val args: Array<String>) {
@Parameter(names = ["--seed"], description = "Random seed used for DPOR")
var randomSeed: Int = -1

@Parameter(names = ["--arg-to-file"], description = "Visualize the resulting file here: https://ftsrg-edu.github.io/student-sisak-argviz/")
@Parameter(names = ["--arg-to-file"],
description = "Visualize the resulting file here: https://ftsrg-edu.github.io/student-sisak-argviz/")
var argToFile: Boolean = false

@Parameter
Expand Down Expand Up @@ -175,7 +176,7 @@ class XcfaCli(private val args: Array<String>) {

// propagating input variables
LbePass.level = lbeLevel
if (randomSeed >= 0){
if (randomSeed >= 0) {
XcfaSporLts.random = Random(randomSeed)
XcfaDporLts.random = Random(randomSeed)
}
Expand Down

0 comments on commit fd8ab34

Please sign in to comment.