-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathResult.cs
More file actions
28 lines (26 loc) · 888 Bytes
/
Result.cs
File metadata and controls
28 lines (26 loc) · 888 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
using System;
using System.Collections.Generic;
using System.Text;
using System.ComponentModel.DataAnnotations.Schema;
using System.ComponentModel.DataAnnotations;
namespace RandomizerAlgorithms
{
//Used to store the results of each experiment within a SQLite database
[Table("Results")]
class Result
{
[Key]
public int PK { get; set; }
public string Algorithm { get; set; }
public string World { get; set; }
public bool Completable { get; set; }
public double ExecutionTime { get; set; }
public double Bias { get; set; }
public bool BiasDirection { get; set; }
public double Interestingness { get; set; }
public double Fun { get; set; }
public double Challenge { get; set; }
public double Satisfyingness { get; set; }
public double Boredom { get; set; }
}
}