Questions tagged [raptor]

RAPTOR is a flowchart-based visual programming environment designed for educational purposes.

21 questions
2
votes
1 answer

Is there any way I could run Raptor in macOS with an Apple Silicon Chip?

I tried running it by forcing it to run by Rosetta but sadly the option isn't visible. I need it to complete one of my classes in college.
2
votes
0 answers

Even or odd number in raptor

Well I want to made an algorithm to Specify Even or odd numbers this image is my algorithm in Raptor each time I put a number in it, it gives me "odd" message no matter what number . what is the problem with this algorithm ? ( image explanation…
The Epic
  • 137
  • 5
2
votes
0 answers

I am new to Javascript, Can anyone provide instructions to run RAPTOR repository on any GTFS set

REPO: https://github.com/planarnetwork/raptor I am trying to run Depart after query. Output for any GTFS will suffice. The query given as such is giving error related to assync function. I have modified the query to : var fs = require("fs") const…
2
votes
1 answer

Ackermann function in raptor

How does one create ackermann function using Raptor flowchart? Can it be done? I have a general idea, but i have no idea how to write function 2 or 3 a(m-1,1) or a(m-1, a(m,n-1).
thelion209
  • 21
  • 2
0
votes
0 answers

How do I parse comma separated data in raptor?

I'm trying to input data from a csv file into a raptor program. I am not allowed to edit the csv file. The file contains names and sales in the format, "name,sales". I need the data to be entered into either 2 different arrays or a 2D array. …
kpfud18
  • 1
  • 2
0
votes
0 answers

RAPTOR flowchart crashes on Linux when asking for user input

I'm trying to use RAPTOR flowchart on Ubuntu (i3 window manager, which uses X to render stuff), and RAPTOR crashes with the error xcb_xlib_too_much_data_requested. This happens almost every time I try to execute a flowchart that requests input from…
0
votes
0 answers

Inputing a String to end my RAPTOR Program

This is my assignment: Calculate the refrigerator capacity in cubic feet by first multiplying the height, width, and depth to get cubic inches, and then dividing by 1728 (the number of cubic inches in a cubic foot).** The program accepts model names…
0
votes
0 answers

How to assign a null value to a variable in Raptor?

I am making a Raptor flowchart and I need to assign a null value to a variable when a condition is true. "None" , "null" and "" do not work. Do you see some solution?
0
votes
0 answers

Do while loop in Raptor

I would like to create a do-while loop in Raptor like the one in the picture: instead of the while loop typical of Raptor. I don't seem to be able to put any block between "Loop" node and condition node. Isn't it possible or am I missing…
massi
  • 200
  • 9
0
votes
1 answer

error while starting application after raptor io upgrade to release version 14.2

INFO | jvm 1 | 2022/01/12 18:02:50 | Error starting ApplicationContext. To display the conditions report re-run your application with 'debug' enabled. INFO | jvm 1 | 2022/01/12 18:02:50 | 18:02:50.298 [WrapperJarAppMain] WARN…
0
votes
0 answers

Is it possible to compare strings in raptor?

Is it possible to compare strings in raptor? I've look in the documentation and googled, not haing any luck. Any help would be appreciated.
0
votes
1 answer

Division of integers result in integer not in float? (Raptor Flowchart)

I want to draw a flowchart in Raptor, which will do division of integers and will give result in integers not in floating point numbers like: 2/5=2.5 but I want the result to be 2 which is the quotient part.
0
votes
1 answer

Finding highest and lowest value of rainfall in Raptor

Updated version. I had figured out my previous issue with it but am still unsure how to do the last part. I do not know how to get the number that goes inside of the bracket instead of getting the value that is stored inside of it. The array…
alice83
  • 43
  • 9
0
votes
1 answer

Trying to finding equation for factorials

I am looking to find the factoral for N! but we cannot use the factorial function the equation I entered gives me numbers that are almost correct but not quite like when I enter 10 it gives me 36288000 when it should be giving me 3628800 declare…
0
votes
1 answer

Erasure Encoding with little resource usage

Hey I'm pretty new to a lot of the erasure encoding concepts. I've mostly only read about Reed-solomon, but it does not fit what I need. I need to find a technique that can create parity shards on large data WITHOUT requiring heavy system resource…
1
2