Skip to content

Commit

Permalink
Outputting selF and selT even if null.
Browse files Browse the repository at this point in the history
  • Loading branch information
lvella committed Aug 15, 2023
1 parent ab84fd6 commit a64a4d4
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions starky/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,7 @@ pub struct PlookupIdentity {
pub f: Option<Vec<usize>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub t: Option<Vec<usize>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub selF: Option<usize>, //selector
#[serde(skip_serializing_if = "Option::is_none")]
pub selT: Option<usize>,
pub fileName: String,
pub line: usize,
Expand All @@ -122,9 +120,7 @@ pub struct PermutationIdentity {
pub f: Option<Vec<usize>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub t: Option<Vec<usize>>,
#[serde(skip_serializing_if = "Option::is_none")]
pub selF: Option<usize>, //selector
#[serde(skip_serializing_if = "Option::is_none")]
pub selT: Option<usize>,
pub fileName: String,
pub line: usize,
Expand Down

0 comments on commit a64a4d4

Please sign in to comment.