Skip to content

Commit e3866e8

Browse files
committed
32d30e4 Clippy: Simplify Literal variant (Christian Lewe) d9e0ad7 Clippy: Fix (Christian Lewe) 3611825 Clippy: Ignore lint that makes code less readable (Christian Lewe) 88ac7b9 Fix AMR computation (Christian Lewe) Pull request description: Fix an error that was introduced in BlockstreamResearch#212. Fix clippy. ACKs for top commit: apoelstra: ACK 32d30e4 Tree-SHA512: 4e3738d6f8be07f2b420ab84d913415071fb3afa4dfd3645f927eccb0c98487f7cd4143e16b9e4dd8b0d3855aa6cd6fc912c9b0f613a72a07b71990f8fc253a9
2 parents d6e693a + 32d30e4 commit e3866e8

File tree

6 files changed

+18
-23
lines changed

6 files changed

+18
-23
lines changed

simplicity-sys/src/alloc.rs

+1
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ use std::mem;
77
/// [16 bytes is the greatest alignment of any architecture Rust currently supports](https://github.com/rust-lang/rust/blob/61223975d46f794466efa832bc7562b9707ecc46/library/std/src/sys/pal/common/alloc.rs).
88
#[repr(align(16))]
99
#[derive(Default, Copy, Clone)]
10+
#[allow(dead_code)]
1011
pub struct AlignedType([u8; 16]);
1112

1213
/// Minimal alignment which is valid for all C types.

src/human_encoding/parse/ast.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
//! Parsing
44
55
use std::mem;
6-
use std::str::FromStr;
76
use std::sync::Arc;
87

98
use crate::human_encoding::{Error, ErrorSet, Position, WitnessOrHole};
@@ -61,7 +60,7 @@ pub enum ExprInner<J> {
6160
#[derive(Debug, PartialEq, Eq, Clone, Hash)]
6261
pub enum AstCmr<J> {
6362
Expr(Arc<Expression<J>>),
64-
Literal(Cmr),
63+
Literal,
6564
}
6665

6766
/// A type, as represented in the AST
@@ -395,9 +394,7 @@ impl<J: Jet> Ast<J> {
395394
assert_eq!(lexemes.len(), 1);
396395
assert_eq!(lexemes[0].raw.len(), 65);
397396

398-
Ast::Cmr(AstCmr::Literal(
399-
Cmr::from_str(&lexemes[0].raw[1..]).unwrap(),
400-
))
397+
Ast::Cmr(AstCmr::Literal)
401398
}
402399

403400
fn expect_arrow(&mut self) -> (Option<Type>, Option<Type>) {

src/human_encoding/parse/mod.rs

+8-13
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ use crate::dag::{Dag, DagLike, InternalSharing};
88
use crate::jet::Jet;
99
use crate::node;
1010
use crate::types::Type;
11-
use crate::Cmr;
1211
use std::collections::HashMap;
1312
use std::mem;
1413
use std::sync::atomic::{AtomicUsize, Ordering};
@@ -139,7 +138,7 @@ struct ResolvedExpression<J: Jet> {
139138

140139
enum ResolvedCmr<J: Jet> {
141140
Expr(Arc<ResolvedExpression<J>>),
142-
Literal(Cmr),
141+
Literal,
143142
}
144143

145144
enum ResolvedInner<J: Jet> {
@@ -312,7 +311,7 @@ pub fn parse<J: Jet + 'static>(
312311
right.in_degree.fetch_add(1, Ordering::SeqCst);
313312
ResolvedCmr::Expr(right)
314313
}
315-
ast::AstCmr::Literal(cmr) => ResolvedCmr::Literal(*cmr),
314+
ast::AstCmr::Literal => ResolvedCmr::Literal,
316315
};
317316
ResolvedInner::AssertL(left, right)
318317
}
@@ -323,7 +322,7 @@ pub fn parse<J: Jet + 'static>(
323322
left.in_degree.fetch_add(1, Ordering::SeqCst);
324323
ResolvedCmr::Expr(left)
325324
}
326-
ast::AstCmr::Literal(cmr) => ResolvedCmr::Literal(*cmr),
325+
ast::AstCmr::Literal => ResolvedCmr::Literal,
327326
};
328327

329328
let right = inline_stack.pop().unwrap();
@@ -413,8 +412,8 @@ pub fn parse<J: Jet + 'static>(
413412
| ResolvedInner::AssertR(ResolvedCmr::Expr(ref left), ref right) => {
414413
Dag::Binary(left, right)
415414
}
416-
ResolvedInner::AssertL(ref child, ResolvedCmr::Literal(..))
417-
| ResolvedInner::AssertR(ResolvedCmr::Literal(..), ref child) => Dag::Unary(child),
415+
ResolvedInner::AssertL(ref child, ResolvedCmr::Literal)
416+
| ResolvedInner::AssertR(ResolvedCmr::Literal, ref child) => Dag::Unary(child),
418417
ResolvedInner::Inline(ref inner) => inner.as_dag().map(|node| node),
419418
}
420419
}
@@ -431,10 +430,10 @@ pub fn parse<J: Jet + 'static>(
431430
for data in expr.as_ref().post_order_iter::<InternalSharing>() {
432431
let left = data
433432
.left_index
434-
.and_then(|idx| converted[idx].as_ref().map(Arc::clone));
433+
.and_then(|idx| Option::<Arc<_>>::clone(&converted[idx]));
435434
let right = data
436435
.right_index
437-
.and_then(|idx| converted[idx].as_ref().map(Arc::clone));
436+
.and_then(|idx| Option::<Arc<_>>::clone(&converted[idx]));
438437

439438
let maybe_inner = match data.node.inner {
440439
ResolvedInner::Missing { ref name, .. } => {
@@ -482,11 +481,7 @@ pub fn parse<J: Jet + 'static>(
482481
}
483482
};
484483

485-
let name = data
486-
.node
487-
.name
488-
.as_ref()
489-
.map(Arc::clone)
484+
let name = Option::<Arc<str>>::clone(&data.node.name)
490485
.unwrap_or_else(|| Arc::from(namer.assign_name(inner.as_ref()).as_str()));
491486

492487
let node = NamedConstructNode::new(

src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@
44
// we use `bool` to represent bits and frequentely assert_eq against them
55
clippy::bool_assert_comparison,
66
// we use () as the environment for Core (FIXME we should probabl use a newtype)
7-
clippy::let_unit_value
7+
clippy::let_unit_value,
8+
// We write map(Arc::clone) to signify that a cheap Arc is being cloned
9+
clippy::map_clone
810
)]
911

1012
#[cfg(feature = "serde")]

src/merkle/amr.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl Amr {
6565

6666
/// Produce a CMR for a take combinator
6767
pub fn take(ty: &FinalArrow, child: Amr) -> Self {
68-
let (a, b) = ty.source.as_sum().unwrap();
68+
let (a, b) = ty.source.as_product().unwrap();
6969
let c = &ty.target;
7070
Self::TAKE_IV
7171
.update(a.tmr().into(), b.tmr().into())

src/node/witness.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ impl<J: Jet> WitnessNode<J> {
5959
.as_ref()
6060
.map(Arc::clone)
6161
.map_disconnect(Option::<Arc<_>>::clone)
62-
.map_witness(|wit| wit.as_ref().map(Arc::clone)),
62+
.map_witness(Option::<Arc<Value>>::clone),
6363
})
6464
}
6565

@@ -83,7 +83,7 @@ impl<J: Jet> WitnessNode<J> {
8383
_: &PostOrderIterItem<&WitnessNode<J>>,
8484
wit: &Option<Arc<Value>>,
8585
) -> Result<Option<Arc<Value>>, Self::Error> {
86-
Ok(wit.as_ref().map(Arc::clone))
86+
Ok(Option::<Arc<Value>>::clone(wit))
8787
}
8888

8989
fn prune_case(
@@ -129,7 +129,7 @@ impl<J: Jet> WitnessNode<J> {
129129
) -> Result<WitnessData<J>, Self::Error> {
130130
let converted_inner = inner
131131
.map(|node| node.cached_data())
132-
.map_witness(|wit| wit.as_ref().map(Arc::clone));
132+
.map_witness(Option::<Arc<Value>>::clone);
133133
// This next line does the actual retyping.
134134
let mut retyped = WitnessData::from_inner(converted_inner)?;
135135
// Sometimes we set the prune bit on nodes without setting that

0 commit comments

Comments
 (0)